Skip to content

Commit ab25bf1

Browse files
committed
chore: include splash in vite conf
1 parent acde63b commit ab25bf1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

fixtures/e2e-apps/tauri/vite.config.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { resolve } from 'path';
12
import { defineConfig } from 'vite';
23

34
export default defineConfig({
@@ -6,7 +7,10 @@ export default defineConfig({
67
outDir: 'dist',
78
emptyOutDir: true,
89
rollupOptions: {
9-
input: 'index.html',
10+
input: {
11+
main: resolve(__dirname, 'index.html'),
12+
splash: resolve(__dirname, 'splash.html'),
13+
},
1014
},
1115
},
1216
// Ensure workspace packages are resolved correctly

0 commit comments

Comments
 (0)