1
0
Fork 0
mirror of https://github.com/thomiceli/opengist.git synced 2025-01-25 15:20:36 +00:00
opengist/vite.config.js

15 lines
325 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: {
2023-04-03 23:37:54 +02:00
input: ['./public/main.ts', './public/editor.ts']
2023-03-14 16:22:52 +01:00
}
}
})