diff options
Diffstat (limited to 'lib/awprint/webpack.config.js')
| -rw-r--r-- | lib/awprint/webpack.config.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/awprint/webpack.config.js b/lib/awprint/webpack.config.js new file mode 100644 index 0000000..169bcfd --- /dev/null +++ b/lib/awprint/webpack.config.js @@ -0,0 +1,13 @@ +module.exports = { + entry: './client/index.jsx', + watch: true, + devtool: 'cheap-source-map', + output: { + filename: './public/bundle.js' + }, + module: { + loaders: [ + { test: /\.jsx?$/, loader: 'babel-loader', exclude: /node_modules/ }, + ] + }, +} |
