This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-05-03 02:04:16 +02:00
|
|
|
// Note: You must restart bin/webpack-dev-server for changes to take effect
|
|
|
|
|
2017-05-20 17:31:47 +02:00
|
|
|
const merge = require('webpack-merge');
|
|
|
|
const sharedConfig = require('./shared.js');
|
2017-05-03 02:04:16 +02:00
|
|
|
|
|
|
|
module.exports = merge(sharedConfig, {
|
2017-05-07 15:22:30 +02:00
|
|
|
devtool: 'cheap-module-eval-source-map',
|
2017-05-03 02:04:16 +02:00
|
|
|
|
|
|
|
stats: {
|
2017-05-20 17:31:47 +02:00
|
|
|
errorDetails: true,
|
2017-05-03 02:04:16 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
output: {
|
2017-05-20 17:31:47 +02:00
|
|
|
pathinfo: true,
|
|
|
|
},
|
|
|
|
});
|