summaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorYuval Adam <yuval@y3xz.com>2015-12-08 12:06:16 +0200
committerYuval Adam <yuval@y3xz.com>2015-12-08 12:06:16 +0200
commitc52b19823b2575130b3ef1e133f494b176fa1500 (patch)
tree83c2a1b1765fb07bd7c38448672aecbd4c13af03 /webpack.config.js
parent2b93429ff34bc489998a326c8698df54e269846a (diff)
Initial webpack stuff
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..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