闭社主体 forked from https://github.com/tootsuite/mastodon
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
322 B

  1. // Note: You must restart bin/webpack-dev-server for changes to take effect
  2. const merge = require('webpack-merge')
  3. const sharedConfig = require('./shared.js')
  4. module.exports = merge(sharedConfig, {
  5. devtool: 'cheap-module-eval-source-map',
  6. stats: {
  7. errorDetails: true
  8. },
  9. output: {
  10. pathinfo: true
  11. }
  12. })