File tree 4 files changed +12
-6
lines changed
4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 4
4
< meta charset ="UTF-8 " />
5
5
< link rel ="shortcut icon " type ="image/x-icon " href ="favicon.ico " />
6
6
< meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
7
+ < meta name ="theme-color " content ="#11111b " />
8
+ < link rel ="apple-touch-icon " href ="/logo192.png " />
9
+ < link rel ="manifest " href ="/manifest.json " />
7
10
< title > Weather</ title >
8
11
</ head >
9
12
< body >
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " weather" ,
3
3
"private" : true ,
4
- "version" : " 0.2.1 " ,
4
+ "version" : " 0.2.4 " ,
5
5
"homepage" : " https://virkkunen.github.io/weather" ,
6
6
"license" : " GPL-3.0-or-later" ,
7
7
"type" : " module" ,
8
8
"scripts" : {
9
9
"dev" : " vite" ,
10
10
"build" : " tsc && vite build" ,
11
11
"preview" : " vite preview" ,
12
- "predeploy" : " npm run build" ,
13
- "deploy" : " gh-pages -d build"
12
+ "deploy" : " npm run build"
14
13
},
15
14
"dependencies" : {
16
15
"@headlessui/react" : " ^1.7.13" ,
Original file line number Diff line number Diff line change 3
3
"name" : " Weather" ,
4
4
"icons" : [
5
5
{
6
- "src" : " favicon.ico" ,
6
+ "src" : " / favicon.ico" ,
7
7
"sizes" : " 64x64 32x32 24x24 16x16" ,
8
8
"type" : " image/x-icon"
9
9
},
10
10
{
11
- "src" : " logo192.png" ,
11
+ "src" : " / logo192.png" ,
12
12
"type" : " image/png" ,
13
13
"sizes" : " 192x192"
14
14
},
15
15
{
16
- "src" : " logo512.png" ,
16
+ "src" : " / logo512.png" ,
17
17
"type" : " image/png" ,
18
18
"sizes" : " 512x512"
19
19
}
Original file line number Diff line number Diff line change @@ -7,4 +7,8 @@ import { ghPages } from 'vite-plugin-gh-pages';
7
7
export default defineConfig ( {
8
8
plugins : [ react ( ) , ghPages ( ) ] ,
9
9
base : '/weather/' ,
10
+ publicDir : 'public' ,
11
+ build : {
12
+ manifest : true ,
13
+ } ,
10
14
} )
You can’t perform that action at this time.
0 commit comments