an-anime-game-launcher/vite.config.js
Observer KRypt0n_ 0854a2fefd
Several changes
- changed launcher version field in neutralino configs
- updated vite dependency version
- added launcher background and social buttons reactive loading
- added `Cache` class that probably will be useless in future
-
2021-12-23 16:07:35 +02:00

21 lines
391 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',
'about.html'
]
}
}
});