feat(privat/CV): sync to latest upstream (cv-upstream/main, 30f9608b)

This commit is contained in:
2026-07-07 15:20:55 +02:00
parent 8ac664d33d
commit a4efabbc60
417 changed files with 48564 additions and 712 deletions
+19
View File
@@ -0,0 +1,19 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import contentPlugin from './plugins/vite-plugin-content.js'
export default defineConfig({
plugins: [react(), contentPlugin()],
server: {
proxy: {
'/api': {
target: 'http://localhost:3003',
changeOrigin: true,
},
},
},
test: {
environment: 'jsdom',
globals: true,
},
})