feat(content): implement Content Engine MVP (v1.0) with GTM integration

This commit is contained in:
2026-01-20 12:45:59 +00:00
parent cafcd71fe5
commit 231aaae8ef
17 changed files with 1169 additions and 30 deletions

View File

@@ -0,0 +1,16 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
base: './', // CRITICAL for sub-path deployment
server: {
proxy: {
'/api': {
target: 'http://localhost:3006',
changeOrigin: true,
}
}
}
})