From bebde1a43d5604104beed17d81bfcbf446d37880 Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Tue, 21 Jun 2016 20:51:46 +0300 Subject: Basic webpack config and style loader --- 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..feca40a --- /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" } + ] + } +}; -- cgit v1.3.1