mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-07 08:23:14 +00:00
17 lines
303 B
JavaScript
17 lines
303 B
JavaScript
|
// Note: You must restart bin/webpack-dev-server for changes to take effect
|
||
|
|
||
|
const merge = require('webpack-merge')
|
||
|
const sharedConfig = require('./shared.js')
|
||
|
|
||
|
module.exports = merge(sharedConfig, {
|
||
|
devtool: 'sourcemap',
|
||
|
|
||
|
stats: {
|
||
|
errorDetails: true
|
||
|
},
|
||
|
|
||
|
output: {
|
||
|
pathinfo: true
|
||
|
}
|
||
|
})
|