um-react/vite.config.ts

20 lines
465 B
TypeScript
Raw Normal View History

2023-05-09 00:22:00 +00:00
import path from 'path';
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import wasm from 'vite-plugin-wasm';
import topLevelAwait from 'vite-plugin-top-level-await';
2023-05-07 19:11:16 +00:00
// https://vitejs.dev/config/
export default defineConfig({
base: './',
optimizeDeps: {
exclude: ['@jixun/libparakeet'],
},
plugins: [react(), wasm(), topLevelAwait()],
2023-05-09 00:22:00 +00:00
resolve: {
alias: {
'~': path.resolve(__dirname, 'src'),
},
},
});