about summary refs log tree commit diff
path: root/config/webpack/development.js
blob: f6235f42e514483fc62198b0208d4f779cd3777a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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,
  },
});