an-anime-game-launcher/vite.config.js
Observer KRypt0n_ 425c7f4db0
Several changes
- added blank analytics window
- added roadmap goal
- removed `components.sass` file;
  its content was moved to `settings.sass`
- updated Spain and Italian
- made preparations for tos violation warning window
- improved `Button` component
- added `constants.uri.discord` and
  `constants.placeholders.uppercase.company_alterego` fields
- updated empathize version, added proper windows centering
2022-01-30 01:18:41 +02:00

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