diff options
| author | Yuval Adam <yuval@y3xz.com> | 2015-12-08 12:06:16 +0200 |
|---|---|---|
| committer | Yuval Adam <yuval@y3xz.com> | 2015-12-08 12:06:16 +0200 |
| commit | c52b19823b2575130b3ef1e133f494b176fa1500 (patch) | |
| tree | 83c2a1b1765fb07bd7c38448672aecbd4c13af03 /webpack.config.js | |
| parent | 2b93429ff34bc489998a326c8698df54e269846a (diff) | |
Initial webpack stuff
Diffstat (limited to 'webpack.config.js')
| -rw-r--r-- | webpack.config.js | 12 |
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 |
