7 lines
No EOL
215 B
TypeScript
7 lines
No EOL
215 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
export default defineConfig({
|
|
base: '/lab/data-dashboard/', // This tells Vite to prepend this to all paths
|
|
plugins: [react()],
|
|
}); |