vue.config.js devserver proxy not working code example
Example: vue dev server proxy not working
module.exports = {
devServer: {
proxy: {
"/api/": {
target: "http://localhost:3000/api/"
}
}
}
};
module.exports = {
devServer: {
proxy: {
"/api/": {
target: "http://localhost:3000/api/"
}
}
}
};