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 4ff93fb commit 4623e64Copy full SHA for 4623e64
config/config.local.ts
@@ -1,5 +1,6 @@
1
import { EggAppConfig } from 'egg';
2
import * as path from 'path';
3
+import { getWebpackConfig } from 'easywebpack-vue';
4
5
export default (appInfo: EggAppConfig) => {
6
const exports: any = {};
@@ -21,5 +22,10 @@ export default (appInfo: EggAppConfig) => {
21
22
injectCss: false
23
};
24
25
+ exports.webpack = {
26
+ browser: false,
27
+ webpackConfigList: getWebpackConfig()
28
+ }
29
+
30
return exports;
31
0 commit comments