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.
2 parents ddd63a2 + a56027c commit 24528b6Copy full SHA for 24528b6
conf/webpack/Base.js
@@ -3,6 +3,7 @@
3
/**
4
* Webpack configuration base class
5
*/
6
+const fs = require('fs');
7
const path = require('path');
8
const npmBase = path.join(__dirname, '../../node_modules');
9
@@ -17,7 +18,7 @@ class WebpackBaseConfig {
17
18
* @return {Array} List of included packages
19
20
get includedPackages() {
- return [].map((pkg) => path.join(npmBase, pkg));
21
+ return [].map((pkg) => fs.realpathSync(path.join(npmBase, pkg)));
22
}
23
24
0 commit comments