mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-11 12:30:25 +08:00
19 lines
366 B
JavaScript
19 lines
366 B
JavaScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
define: {
|
|
'IS_VSCODE': JSON.stringify(false),
|
|
},
|
|
optimizeDeps: {
|
|
exclude: ['@sqlite.org/sqlite-wasm'],
|
|
},
|
|
server: {
|
|
fs: {
|
|
// Allow serving wasm files in node_modules
|
|
allow: ['..'],
|
|
},
|
|
},
|
|
});
|