- Update API to return lowercase roles for frontend compatibility - Fix Tenant owner lookup in platform admin serializer - Update frontend App.tsx to match tarball implementation - Prioritize vite.config.js for HMR support - Include pending CSP and CORS configuration updates
18 lines
356 B
Plaintext
18 lines
356 B
Plaintext
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
host: true,
|
|
port: 5173,
|
|
strictPort: false,
|
|
allowedHosts: [
|
|
'localhost',
|
|
'.lvh.me',
|
|
'lvh.me'
|
|
],
|
|
}
|
|
})
|