From d8beee5d96f2e24f011314cc7711843df72d6e7e Mon Sep 17 00:00:00 2001 From: daurnimator Date: Wed, 17 May 2017 14:33:24 +1000 Subject: webpack.config.js: Add explicit target --- webpack.config.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'webpack.config.js') 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', -- cgit v1.2.3-54-g00ecf