happy bday!

This commit is contained in:
Joey Eamigh
2024-05-26 22:45:45 -04:00
commit be3a13eee1
34 changed files with 233005 additions and 0 deletions

17
vite.config.js Normal file
View File

@@ -0,0 +1,17 @@
// @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',
},
};