diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-17 14:33:24 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-17 14:33:24 +1000 |
commit | d8beee5d96f2e24f011314cc7711843df72d6e7e (patch) | |
tree | 2734bf3bd8711611515a340bb09156ed1ea04b8b /webpack.config.js | |
parent | 2c5d32c0117f200b188599d39926e8bfeafe9995 (diff) | |
download | fengari-d8beee5d96f2e24f011314cc7711843df72d6e7e.tar.gz fengari-d8beee5d96f2e24f011314cc7711843df72d6e7e.tar.bz2 fengari-d8beee5d96f2e24f011314cc7711843df72d6e7e.zip |
webpack.config.js: Add explicit target
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js index c54580e..a776a44 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -5,6 +5,7 @@ const BabiliPlugin = require("babili-webpack-plugin"); module.exports = [ { entry: './src/fengari.js', + target: 'web', output: { path: path.resolve(__dirname, 'dist'), filename: 'fengari.js', @@ -21,6 +22,7 @@ module.exports = [ }, { entry: './src/fengari.js', + target: 'web', output: { path: path.resolve(__dirname, 'dist'), filename: 'fengari.min.js', |