summaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorYuval Adam <yuval@y3xz.com>2016-06-21 20:51:46 +0300
committerYuval Adam <yuval@y3xz.com>2016-06-21 20:51:46 +0300
commitbebde1a43d5604104beed17d81bfcbf446d37880 (patch)
tree1ca329d02dad643dc77354c5a3d93691a580845e /webpack.config.js
parent346bb353891c7ef1149ab0f9a6721262ab56931d (diff)
Basic webpack config and style loader
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js12
1 files changed, 12 insertions, 0 deletions
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" }
+ ]
+ }
+};