mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-11-25 14:26:16 +03:00
faee9c4a35
- added splash screen - added `Process.kill()` static method
22 lines
445 B
JavaScript
22 lines
445 B
JavaScript
import { defineConfig } from 'vite';
|
|
|
|
import { svelte } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
server: {
|
|
port: 8080
|
|
},
|
|
plugins: [svelte()],
|
|
base: '',
|
|
build: {
|
|
outDir: 'bundle',
|
|
rollupOptions: {
|
|
input: [
|
|
'index.html',
|
|
'settings.html',
|
|
'splash.html'
|
|
]
|
|
}
|
|
}
|
|
});
|