frontend: Proxy prod backend for local development (#789)

This commit is contained in:
Janne Heß 2024-06-10 11:09:31 +02:00 committed by GitHub
parent 192553f6ae
commit cf2fd8e388
Failed to generate hash of commit

View file

@ -17,14 +17,13 @@ const dev = {
stats: "errors-only"
},
historyApiFallback: true,
// feel free to delete this section if you don't need anything like this
onBeforeSetupMiddleware: function (devServer) {
// on port 3000
devServer.app.get("/test", function (req, res) {
res.json({result: "You reached the dev server"});
});
}
proxy: {
'/backend': {
target: 'https://nixos-search-7-1733963800.us-east-1.bonsaisearch.net/',
pathRewrite: {'^/backend' : ''},
changeOrigin: true
},
},
},
};