1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-06 16:36:41 +02:00
TableFilter/webpack.dev.config.js
2017-02-04 01:00:29 +11:00

19 lines
490 B
JavaScript

var webpackConfig = require('./webpack.config.js');
var webpack = require('webpack');
var StringReplacePlugin = require('string-replace-webpack-plugin');
module.exports = {
cache: true,
entry: webpackConfig.entry,
output: webpackConfig.output,
resolve: webpackConfig.resolve,
module: webpackConfig.module,
devtool: 'source-map',
plugins: [
new webpack.LoaderOptionsPlugin({
debug: true
}),
new StringReplacePlugin()
]
};