mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-12-20 08:51:47 +03:00
1a99aae933
- added template settings html file - removed excess code from the entry file - fixed windows loading - added proper main window title - added settings button events - also `index.ts` now works through `promisify()` - added `Launcher.showSettings()` method - fixed `promisify()` issues related to `callAtOnce` property
21 lines
394 B
JavaScript
21 lines
394 B
JavaScript
import { defineConfig } from 'vite';
|
|
|
|
import vue from '@vitejs/plugin-vue';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
server: {
|
|
port: 8080
|
|
},
|
|
plugins: [vue()],
|
|
base: '',
|
|
build: {
|
|
outDir: 'bundle',
|
|
rollupOptions: {
|
|
input: [
|
|
'index.html',
|
|
'settings.html'
|
|
]
|
|
}
|
|
}
|
|
});
|