mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2025-01-28 04:27:58 +01:00
Merge pull request #127 from orangemug/fix/build-path
Fixed build path since move of webpack.config.* to ./config
This commit is contained in:
commit
a7e2154422
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ module.exports = {
|
|||
],
|
||||
devtool: process.env.WEBPACK_DEVTOOL || 'cheap-module-source-map',
|
||||
output: {
|
||||
path: path.join(__dirname, 'public'),
|
||||
path: path.join(__dirname, '..', 'public'),
|
||||
filename: 'bundle.js'
|
||||
},
|
||||
resolve: {
|
||||
|
|
|
@ -32,7 +32,7 @@ module.exports = {
|
|||
]
|
||||
},
|
||||
output: {
|
||||
path: path.join(__dirname, 'public'),
|
||||
path: path.join(__dirname, '..', 'public'),
|
||||
filename: '[name].[chunkhash].js',
|
||||
chunkFilename: '[chunkhash].js'
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue