From c52b19823b2575130b3ef1e133f494b176fa1500 Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Tue, 8 Dec 2015 12:06:16 +0200 Subject: Initial webpack stuff --- webpack.config.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 webpack.config.js (limited to 'webpack.config.js') diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000..2ccc988 --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,12 @@ +module.exports = { + entry: "./index.js", + output: { + path: __dirname, + filename: "bundle.js" + }, + module: { + loaders: [ + { test: /\.css$/, loader: "style!css" } + ] + } +}; \ No newline at end of file -- cgit v1.3.1