Archived
build-and-publish / build (push) Successful in 1m9s
Replaces the Next.js app. Same site, same look; the parts that were decisions rather than markup now live in Java. - catalogue, curated order, category filter and image URLs move from a TypeScript array into Postgres behind /api/products and /api/categories - contact form uses the shared platform-starter-contact: validate, RECORD, send, then fan out to n8n. Recording first means a relay outage costs a notification, not an enquiry - PageMetaController rewrites title/description/OG per route, replacing what Next's SSR gave crawlers and link-preview scrapers - 50MB of photos leave the repo for the MinIO bucket, re-encoded to webp (14MB) with EXIF (including phone GPS) stripped - fixes a catalogue typo: 'Strawberry Pie' was category 'Pies', which no filter matched, so it was unreachable unless browsing All Co-Authored-By: Claude Opus 4.8 <[email protected]> Claude-Session: https://claude.ai/code/session_01XXKjx7FNyRVAjU8dgB5KhN
27 lines
861 B
TypeScript
27 lines
861 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
import svgr from 'vite-plugin-svgr';
|
|
import path from 'node:path';
|
|
|
|
export default defineConfig({
|
|
// svgr keeps the `import Logo from './x.svg?react'` style the old @svgr/webpack setup used, so the
|
|
// logo marks stay inline SVG and inherit currentColor.
|
|
plugins: [react(), tailwindcss(), svgr()],
|
|
resolve: {
|
|
alias: { '@': path.resolve(__dirname, './src') },
|
|
},
|
|
server: {
|
|
port: 2024,
|
|
// Backend on :8080 during development; the built SPA is served by Spring, same origin.
|
|
proxy: {
|
|
'/api': 'http://localhost:8080',
|
|
},
|
|
},
|
|
build: {
|
|
outDir: 'dist',
|
|
// The photos live in MinIO, so what's left is small — a warning here would mean a real regression.
|
|
chunkSizeWarningLimit: 600,
|
|
},
|
|
});
|