1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-09 18:06:53 +02:00
TableFilter/webpack.dev.config.js

19 lines
490 B
JavaScript
Raw Normal View History

2017-02-03 07:04:07 +01:00
var webpackConfig = require('./webpack.config.js');
var webpack = require('webpack');
2017-02-03 15:00:29 +01:00
var StringReplacePlugin = require('string-replace-webpack-plugin');
2017-02-03 07:04:07 +01:00
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
2017-02-03 15:00:29 +01:00
}),
new StringReplacePlugin()
2017-02-03 07:04:07 +01:00
]
};