mtgweeb/vite.config.ts

11 lines
164 B
TypeScript
Raw Normal View History

2024-10-25 21:18:40 +00:00
import wasm from 'vite-plugin-wasm';
export default {
plugins: [wasm()],
2024-10-27 16:38:00 +00:00
build: {
target: 'esnext',
},
assetsInclude: ['**/*.jsonz'],
base: './',
2024-10-25 21:18:40 +00:00
};