* Bump webpack-merge from 4.2.2 to 5.0.9 Bumps [webpack-merge](https://github.com/survivejs/webpack-merge) from 4.2.2 to 5.0.9. - [Release notes](https://github.com/survivejs/webpack-merge/releases) - [Changelog](https://github.com/survivejs/webpack-merge/blob/master/CHANGELOG.md) - [Commits](https://github.com/survivejs/webpack-merge/compare/v4.2.2...v5.0.9) Signed-off-by: dependabot[bot] <support@github.com> * Fix import path Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Yamagishi Kazutoshi <ykzts@desire.sh>
		
			
				
	
	
		
			61 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Note: You must restart bin/webpack-dev-server for changes to take effect
 | 
						|
 | 
						|
const { merge } = require('webpack-merge');
 | 
						|
const sharedConfig = require('./shared');
 | 
						|
const { settings, output } = require('./configuration');
 | 
						|
 | 
						|
const watchOptions = {};
 | 
						|
 | 
						|
if (process.env.VAGRANT) {
 | 
						|
  // If we are in Vagrant, we can't rely on inotify to update us with changed
 | 
						|
  // files, so we must poll instead. Here, we poll every second to see if
 | 
						|
  // anything has changed.
 | 
						|
  watchOptions.poll = 1000;
 | 
						|
}
 | 
						|
 | 
						|
module.exports = merge(sharedConfig, {
 | 
						|
  mode: 'development',
 | 
						|
  cache: true,
 | 
						|
  devtool: 'cheap-module-eval-source-map',
 | 
						|
 | 
						|
  stats: {
 | 
						|
    errorDetails: true,
 | 
						|
  },
 | 
						|
 | 
						|
  output: {
 | 
						|
    pathinfo: true,
 | 
						|
  },
 | 
						|
 | 
						|
  devServer: {
 | 
						|
    clientLogLevel: 'none',
 | 
						|
    compress: settings.dev_server.compress,
 | 
						|
    quiet: settings.dev_server.quiet,
 | 
						|
    disableHostCheck: settings.dev_server.disable_host_check,
 | 
						|
    host: settings.dev_server.host,
 | 
						|
    port: settings.dev_server.port,
 | 
						|
    https: settings.dev_server.https,
 | 
						|
    hot: settings.dev_server.hmr,
 | 
						|
    contentBase: output.path,
 | 
						|
    inline: settings.dev_server.inline,
 | 
						|
    useLocalIp: settings.dev_server.use_local_ip,
 | 
						|
    public: settings.dev_server.public,
 | 
						|
    publicPath: output.publicPath,
 | 
						|
    historyApiFallback: {
 | 
						|
      disableDotRule: true,
 | 
						|
    },
 | 
						|
    headers: settings.dev_server.headers,
 | 
						|
    overlay: settings.dev_server.overlay,
 | 
						|
    stats: {
 | 
						|
      entrypoints: false,
 | 
						|
      errorDetails: false,
 | 
						|
      modules: false,
 | 
						|
      moduleTrace: false,
 | 
						|
    },
 | 
						|
    watchOptions: Object.assign(
 | 
						|
      {},
 | 
						|
      settings.dev_server.watch_options,
 | 
						|
      watchOptions,
 | 
						|
    ),
 | 
						|
    writeToDisk: filePath => /ocr/.test(filePath),
 | 
						|
  },
 | 
						|
});
 |