Rename the two medcenter landings to their audience names: medcenter -> medcenterphysio, medcenterpersonal -> medcenterstart. Alongside the rename: - add a RevenueCalculator section to both landings; - rework the copy and figures in src/data/content.ts; - simplify the lead form: drop the "cabinet_state" and "profile" selects (along with SelectField and the matching fields in shared/lead.ts, lead-mapper.ts and amo-check.ts) and make company and email optional; - add the legacy/new static prototypes for both landings; - add pnpm-lock.yaml to medcenterstart (package-lock.json is still there too). deploy/apps.conf and deploy/README.md still refer to the old directory names and need a follow-up. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
22 lines
609 B
TypeScript
22 lines
609 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
|
|
export default defineConfig({
|
|
// Set VITE_BASE_PATH=/medical-centers/with-physiotherapy/ when the site is
|
|
// mounted on a sub-path, so asset URLs in the built HTML resolve against it.
|
|
base: process.env.VITE_BASE_PATH ?? '/',
|
|
plugins: [react(), tailwindcss()],
|
|
build: {
|
|
outDir: 'dist/client',
|
|
emptyOutDir: true,
|
|
assetsInlineLimit: 0,
|
|
},
|
|
server: {
|
|
port: 5173,
|
|
proxy: {
|
|
'/api': { target: 'http://localhost:3002', changeOrigin: true },
|
|
},
|
|
},
|
|
})
|