diff options
Diffstat (limited to 'webpack.common.js')
-rw-r--r-- | webpack.common.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/webpack.common.js b/webpack.common.js index 74fbef1aa9e..cb9b0d0a806 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -27,7 +27,10 @@ module.exports = { publicPath: '/dist/', filename: (chunkData) => { // Get relative path of the src folder - const srcPath = chunkData.chunk.entryModule.context + let srcPath = chunkData.chunk.entryModule.context + if (srcPath === null) { + srcPath = chunkData.chunk.entryModule.rootModule.context + } const relativePath = path.relative(__dirname, srcPath) // If this is a core source, output in core dist folder |