You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ro-vis/vite.config.js

16 lines
304 B
JavaScript

import { defineConfig } from 'vite'
import wasm from 'vite-plugin-wasm'
import preactPlugin from '@preact/preset-vite'
export default defineConfig({
build: {
outDir: 'out',
emptyOutDir: true,
},
server: {
port: 3000,
},
plugins: [preactPlugin(), wasm()],
})