mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-23 13:02:39 +00:00
15 lines
325 B
JavaScript
15 lines
325 B
JavaScript
|
import { defineConfig } from 'vite'
|
||
|
|
||
|
export default defineConfig({
|
||
|
root: './public',
|
||
|
|
||
|
build: {
|
||
|
// generate manifest.json in outDir
|
||
|
outDir: '',
|
||
|
assetsDir: 'assets',
|
||
|
manifest: true,
|
||
|
rollupOptions: {
|
||
|
input: ['./public/main.js', './public/editor.js']
|
||
|
}
|
||
|
}
|
||
|
})
|