10 lines
No EOL
242 B
TypeScript
10 lines
No EOL
242 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
export default defineConfig({
|
|
base: '/lab/data-dashboard/', // Essential: This fixes the asset 404s
|
|
plugins: [react()],
|
|
worker: {
|
|
format: 'es',
|
|
},
|
|
}); |