1
0

Add shopping feature to dashboard

This commit is contained in:
2025-07-18 10:47:44 +02:00
parent 68480757dc
commit 6426e333f9
6 changed files with 1003 additions and 162 deletions

View File

@@ -15,6 +15,15 @@ export default defineConfig({
'@renderer': resolve('src/renderer/src')
}
},
plugins: [react()]
plugins: [react()],
server: {
proxy: {
'/api': {
target: 'http://localhost:3001',
changeOrigin: true,
secure: false
}
}
}
}
})