File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 44
44
"clean" : " rm -r ./dist" ,
45
45
"web" : " bun run --cwd ./src/frontend/ vite" ,
46
46
"demo" : " bun run --cwd ./src/demo/ vite" ,
47
- "build-demo" : " bun run --cwd ./src/demo/ vite build --outDir ../../dist/demo" ,
47
+ "build-demo" : " bun run --cwd ./src/demo/ vite build --outDir ../../dist/demo --base '/function-graph-overview/' " ,
48
48
"format" : " bun prettier . --write" ,
49
49
"lint" : " bun format && bun run eslint"
50
50
},
Original file line number Diff line number Diff line change 2
2
< html lang ="en ">
3
3
< head >
4
4
< meta charset ="UTF-8 " />
5
- < link rel ="icon " type ="image/svg+xml " href ="/vite.svg " />
5
+ < link rel ="icon " type ="image/png " href ="/favicon.png " />
6
6
< meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
7
- < title > Vite + Svelte </ title >
7
+ < title > Function Graph Overview - Demo </ title >
8
8
</ head >
9
9
< body >
10
10
< div id ="app "> </ div >
Original file line number Diff line number Diff line change @@ -4,4 +4,7 @@ import { svelte } from "@sveltejs/vite-plugin-svelte";
4
4
// https://vitejs.dev/config/
5
5
export default defineConfig ( {
6
6
plugins : [ svelte ( ) ] ,
7
+ build : {
8
+ copyPublicDir : true ,
9
+ } ,
7
10
} ) ;
You can’t perform that action at this time.
0 commit comments