diff options
Diffstat (limited to 'example/webpack.config.js')
-rw-r--r-- | example/webpack.config.js | 16 |
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 @@ | |||
1 | var path = require('path'); | ||
2 | |||
3 | module.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 | }; | ||