detectAI / frontend /vite.config.js
vivek1192's picture
Update Vite base path to /static/ for Django serving
f33dcb8
raw
history blame contribute delete
181 Bytes
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
base: '/static/',
})