blob: 60d1d8883b2ef9cbccbb10419eb84bed130a96cd [file] [log] [blame]
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
const { resolve } = require('path');
// https://vitejs.dev/config/
export default defineConfig({
base: './',
build: {
rollupOptions: {
input: {
// Use body.html when deploying
main: resolve(__dirname, '_body.html')
}
}
},
plugins: [vue()]
});