mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-12-19 16:33:04 +03:00
425c7f4db0
- 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
24 lines
517 B
JavaScript
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'
|
|
]
|
|
}
|
|
}
|
|
});
|