an-anime-game-launcher/vite.config.js
Observer KRypt0n_ faee9c4a35
Several changes
- added splash screen
- added `Process.kill()` static method
2021-12-29 14:02:12 +02:00

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'
]
}
}
});