mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-12-19 00:11:45 +03:00
0854a2fefd
- 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 -
21 lines
391 B
JavaScript
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'
|
|
]
|
|
}
|
|
}
|
|
});
|