diff options
| -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',  | 
