1
0
Fork 0
mirror of https://github.com/thomiceli/opengist.git synced 2025-01-24 07:00:32 +00:00
opengist/vite.config.js

16 lines
370 B
JavaScript
Raw Normal View History

2023-03-14 16:22:52 +01:00
import { defineConfig } from 'vite'
export default defineConfig({
root: './public',
build: {
// generate manifest.json in outDir
outDir: '',
assetsDir: 'assets',
manifest: true,
rollupOptions: {
// overwrite default .html entry
input: ['./public/main.js', './public/editor.js']
}
}
})