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 a3c74c8 commit 277fe24Copy full SHA for 277fe24
webpack.config.babel.js
@@ -16,7 +16,7 @@ module.exports = env => {
16
17
const config = merge.smartStrategy(plConfig.webpackMerge)({
18
devtool: ifDev('source-map'),
19
- context: resolve(__dirname, 'source'),
+ context: resolve(__dirname, plConfig.paths.source.root),
20
node: {
21
fs: "empty"
22
},
@@ -29,7 +29,7 @@ module.exports = env => {
29
})
30
31
output: {
32
- path: resolve(__dirname, 'public'),
+ path: resolve(__dirname, plConfig.paths.public.root),
33
filename: '[name].js'
34
35
plugins: removeEmpty([
0 commit comments