Archived
2
0
Fork 0
This repository has been archived on 2024-06-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
mastodon/config/webpack/development.js
2017-05-07 15:22:30 +02:00

16 lines
322 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: 'cheap-module-eval-source-map',
stats: {
errorDetails: true
},
output: {
pathinfo: true
}
})