forecasting/frontend/vite.config.ts
jtricerolph ba3351a8a3 Remove vite-plugin-pwa from forecasting frontend
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>
2026-07-14 08:39:39 +00:00

7 lines
158 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
base: '/forecasting/',
plugins: [react()],
})