All checks were successful
Build and Deploy LSFE Frontend / build-and-deploy (push) Successful in 4m36s
7 lines
201 B
TypeScript
7 lines
201 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
base: './', // <-- relative path, ensures assets resolve correctly
|
|
plugins: [react()],
|
|
}) |