an-anime-game-launcher/vite.config.js
2022-11-02 19:57:18 +02:00

24 lines
519 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',
'tos-violation.html',
'screenshots.html'
]
}
}
});