registerSW.js was 404ing in the browser — the PWA plugin was a leftover from the original port and this is an internal hotel app with no PWA requirement. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
7 lines
158 B
TypeScript
7 lines
158 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
base: '/forecasting/',
|
|
plugins: [react()],
|
|
})
|