an-anime-game-launcher/vite.config.js

23 lines
445 B
JavaScript
Raw Normal View History

2021-12-21 00:39:20 +03:00
import { defineConfig } from 'vite';
import { svelte } from '@sveltejs/vite-plugin-svelte';
2021-12-21 00:39:20 +03:00
// https://vitejs.dev/config/
export default defineConfig({
server: {
port: 8080
},
plugins: [svelte()],
2021-12-21 00:39:20 +03:00
base: '',
build: {
outDir: 'bundle',
rollupOptions: {
input: [
'index.html',
'settings.html',
'splash.html'
2021-12-21 00:39:20 +03:00
]
}
}
});