mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-11-25 14:26:16 +03:00
23 lines
405 B
JavaScript
23 lines
405 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'
|
|
]
|
|
}
|
|
}
|
|
});
|