1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 05:15:02 +00:00
mon-entreprise/source/webpack.test.js
2018-04-23 15:45:55 +02:00

13 lines
331 B
JavaScript

var webpack = require('webpack'),
path = require('path'),
HardSourceWebpackPlugin = require('hard-source-webpack-plugin'),
common = require('./webpack.common.js')
module.exports = {
...common,
mode: 'development',
plugins: [
new webpack.EnvironmentPlugin({ NODE_ENV: 'development' }),
new HardSourceWebpackPlugin()
]
}