File tree 3 files changed +4
-2
lines changed
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 21
21
"test" : " vitest run" ,
22
22
"test:watch" : " vitest" ,
23
23
"test:cov" : " vitest run --coverage" ,
24
- "dev" : " run-p -rl 'vite build --watch --mode development --minify false' serve:firefox" ,
24
+ "dev" : " run-p -rl build:dev serve:firefox" ,
25
25
"build" : " vite build" ,
26
+ "build:dev" : " vite build --watch --mode development --minify false" ,
26
27
"serve:firefox" : " web-ext run -s dist" ,
27
28
"serve:chromium" : " web-ext run -t chromium -s dist" ,
28
29
"bundle" : " web-ext build -s dist -a out --overwrite-dest -n replace_maps.zip" ,
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ const gZoom = 'z'
30
30
const params = new URLSearchParams ( document . location . search )
31
31
32
32
/** @type {MapData } */
33
- const mapData = { }
33
+ let mapData = { }
34
34
35
35
if ( params . has ( gPos ) ) {
36
36
mapData = await readPB ( params . get ( gPos ) )
Original file line number Diff line number Diff line change @@ -96,4 +96,5 @@ input[type='text'] {
96
96
}
97
97
input [type = 'submit' ] {
98
98
width : 20% ;
99
+ text-align : center;
99
100
}
You can’t perform that action at this time.
0 commit comments