We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c045a73 commit ba34bccCopy full SHA for ba34bcc
index.js
@@ -2,6 +2,9 @@ var proxy = require('http-proxy-middleware');
2
3
module.exports = api => {
4
api.configureDevServer((app) => {
5
- app.use(proxy(projectOptions.pluginOptions.proxy.context, projectOptions.pluginOptions.proxy.options));
+ app.use(proxy(
6
+ api.projectOptions.pluginOptions.proxy.context,
7
+ api.projectOptions.pluginOptions.proxy.options
8
+ ));
9
});
10
};
0 commit comments