aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/webpack.config.js
diff options
context:
space:
mode:
authoreric thul <thul.eric@gmail.com>2015-01-13 22:03:09 -0500
committereric thul <thul.eric@gmail.com>2015-01-13 22:03:09 -0500
commitebf06d39692b92058df757b2ec0009f0935d4563 (patch)
treee5db46409894da81ca1f4c39b696c94fd1afab82 /example/webpack.config.js
parentba586c433f799db1f2b8161e188b1e1e0ae7c079 (diff)
parentf9d1a6b3c9833036e27920171e45bb73f1764fa3 (diff)
downloadpurs-loader-ebf06d39692b92058df757b2ec0009f0935d4563.tar.gz
purs-loader-ebf06d39692b92058df757b2ec0009f0935d4563.tar.zst
purs-loader-ebf06d39692b92058df757b2ec0009f0935d4563.zip
Merge branch 'topic/example'
Diffstat (limited to 'example/webpack.config.js')
-rw-r--r--example/webpack.config.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/example/webpack.config.js b/example/webpack.config.js
new file mode 100644
index 0000000..629138a
--- /dev/null
+++ b/example/webpack.config.js
@@ -0,0 +1,16 @@
1var path = require('path');
2
3module.exports = {
4 entry: './src/entry',
5 output: {
6 path: path.join(__dirname, 'dist'),
7 filename: 'app.js'
8 },
9 resolve: {
10 modulesDirectories: [
11 'node_modules',
12 'web_modules',
13 'output'
14 ]
15 }
16};