an-anime-game-launcher/vite.config.js

24 lines
405 B
JavaScript
Raw Normal View History

2021-12-21 00:39:20 +03:00
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'
]
}
}
});