an-anime-game-launcher/vite.config.js
Observer KRypt0n_ 1a99aae933
Several changes
- 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
2021-12-24 21:57:27 +02:00

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'
]
}
}
});