mirror of
https://github.com/pinry/pinry.git
synced 2025-11-16 09:55:50 +01:00
15 lines
232 B
JavaScript
15 lines
232 B
JavaScript
|
|
module.exports = {
|
||
|
|
devServer: {
|
||
|
|
proxy: {
|
||
|
|
'/api': {
|
||
|
|
target: 'http://localhost:8000/',
|
||
|
|
changeOrigin: true,
|
||
|
|
ws: true,
|
||
|
|
pathRewrite: {
|
||
|
|
'^/api': '',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|