mirror of
https://github.com/thomiceli/opengist
synced 2024-11-08 12:55:50 +01:00
16 lines
367 B
JavaScript
Vendored
16 lines
367 B
JavaScript
Vendored
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
root: './public',
|
|
|
|
build: {
|
|
// generate manifest.json in outDir
|
|
outDir: '',
|
|
assetsDir: 'assets',
|
|
manifest: true,
|
|
rollupOptions: {
|
|
input: ['./public/main.ts', './public/editor.ts', './public/admin.ts', './public/hljs.ts']
|
|
}
|
|
}
|
|
})
|