oxc/website/vite.config.js
2024-01-30 21:40:10 +08:00

18 lines
361 B
JavaScript

import { resolve } from 'path'
import { defineConfig } from 'vite'
export default defineConfig({
server: {
fs: {
allow: [__dirname, "../npm/oxc-wasm"],
},
},
build: {
rollupOptions: {
input: {
main: resolve(__dirname, 'index.html'),
playground: resolve(__dirname, 'playground/index.html'),
},
},
},
})