Files
kpl20/vite.config.js
Joey Eamigh be3a13eee1 happy bday!
2024-05-26 22:45:45 -04:00

18 lines
314 B
JavaScript

// @ts-check
import wasm from 'vite-plugin-wasm';
import { watch } from 'vite-plugin-watch';
/** @type {import('vite').UserConfig} */
export default {
plugins: [
wasm(),
watch({
pattern: 'shell/src/**/*.rs',
command: 'bun run dev-wasm',
}),
],
build: {
target: 'esnext',
},
};