feat: AI Brand Voice Translator integration and Mesh Content fix

This commit is contained in:
2026-06-03 23:56:58 -05:00
parent ad8622e243
commit 0676e9f0a8
40 changed files with 3186 additions and 1481 deletions
+5 -1
View File
@@ -67,12 +67,16 @@ export default defineConfig({
server: {
hmr: process.env.DISABLE_HMR !== 'true',
watch: process.env.DISABLE_HMR === 'true' ? null : {},
// Proxy API calls to the embedded Express server
// Proxy API and Workspace calls to the embedded Express server
proxy: {
'/api': {
target: 'http://127.0.0.1:3000',
changeOrigin: true,
},
'/workspace': {
target: 'http://127.0.0.1:3000',
changeOrigin: true,
},
},
},
},