From 3280ab57bffb3fa1018d406eb25a3d98564a51d7 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Tue, 5 Jan 2016 18:10:35 +0100 Subject: Implement basic map rendering --- webpack.config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'webpack.config.js') diff --git a/webpack.config.js b/webpack.config.js index 20a6165..d069bb6 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -6,9 +6,14 @@ module.exports = { path: './build', filename: 'bundle.js' }, - plugins: [new HtmlWebpackPlugin()], + plugins: [ + new HtmlWebpackPlugin({ + title: 'RPGedit' + }) + ], module: { loaders: [ + { test: /\.css$/, loader: 'style-loader!css-loader' }, { test: /\.coffee$/, loader: 'coffee-loader' } ] }, -- cgit v1.2.3