diff --git a/webpack.config.js b/webpack.config.js index d10957658..5be241fed 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -30,7 +30,9 @@ module.exports = { new webpack.DefinePlugin({ "typeof CANVAS_RENDERER": JSON.stringify(true), "typeof WEBGL_RENDERER": JSON.stringify(true), - "typeof PLUGIN_CAMERA3D": JSON.stringify(false) + "typeof EXPERIMENTAL": JSON.stringify(false), + "typeof PLUGIN_CAMERA3D": JSON.stringify(false), + "typeof PLUGIN_FBINSTANT": JSON.stringify(false) }), { apply: (compiler) => { diff --git a/webpack.dist.config.js b/webpack.dist.config.js index f21baf303..674f77b5c 100644 --- a/webpack.dist.config.js +++ b/webpack.dist.config.js @@ -50,7 +50,9 @@ module.exports = { new webpack.DefinePlugin({ "typeof CANVAS_RENDERER": JSON.stringify(true), "typeof WEBGL_RENDERER": JSON.stringify(true), - "typeof PLUGIN_CAMERA3D": JSON.stringify(false) + "typeof EXPERIMENTAL": JSON.stringify(false), + "typeof PLUGIN_CAMERA3D": JSON.stringify(false), + "typeof PLUGIN_FBINSTANT": JSON.stringify(false) }), new CleanWebpackPlugin([ 'dist' ])