Skip to content
Snippets Groups Projects
webpack.dev.conf.js 1.16 KiB
Newer Older
  • Learn to ignore specific revisions
  • lain's avatar
    lain committed
    var config = require('../config')
    var webpack = require('webpack')
    var merge = require('webpack-merge')
    var utils = require('./utils')
    var baseWebpackConfig = require('./webpack.base.conf')
    var HtmlWebpackPlugin = require('html-webpack-plugin')
    
    // add hot-reload related code to entry chunks
    Object.keys(baseWebpackConfig.entry).forEach(function (name) {
      baseWebpackConfig.entry[name] = ['./build/dev-client'].concat(baseWebpackConfig.entry[name])
    })
    
    module.exports = merge(baseWebpackConfig, {
      module: {
    
        rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap })
    
    lain's avatar
    lain committed
      },
    
    HJ's avatar
    HJ committed
      mode: 'development',
    
    lain's avatar
    lain committed
      // eval-source-map is faster for development
      devtool: '#eval-source-map',
      plugins: [
        new webpack.DefinePlugin({
    
          'process.env': config.dev.env,
          'COMMIT_HASH': JSON.stringify('DEV'),
          'DEV_OVERRIDES': JSON.stringify(config.dev.settings)
    
    lain's avatar
    lain committed
        }),
        // https://github.com/glenjamin/webpack-hot-middleware#installation--usage
        new webpack.HotModuleReplacementPlugin(),
        // https://github.com/ampedandwired/html-webpack-plugin
        new HtmlWebpackPlugin({
          filename: 'index.html',
          template: 'index.html',
          inject: true
        })
      ]
    })