Skip to content

Commit 8af2347

Browse files
committed
Added FBIG Plugin and Experimental build flag
1 parent 1d4b2ed commit 8af2347

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

webpack.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ module.exports = {
3030
new webpack.DefinePlugin({
3131
"typeof CANVAS_RENDERER": JSON.stringify(true),
3232
"typeof WEBGL_RENDERER": JSON.stringify(true),
33-
"typeof PLUGIN_CAMERA3D": JSON.stringify(false)
33+
"typeof EXPERIMENTAL": JSON.stringify(false),
34+
"typeof PLUGIN_CAMERA3D": JSON.stringify(false),
35+
"typeof PLUGIN_FBINSTANT": JSON.stringify(false)
3436
}),
3537
{
3638
apply: (compiler) => {

webpack.dist.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ module.exports = {
5050
new webpack.DefinePlugin({
5151
"typeof CANVAS_RENDERER": JSON.stringify(true),
5252
"typeof WEBGL_RENDERER": JSON.stringify(true),
53-
"typeof PLUGIN_CAMERA3D": JSON.stringify(false)
53+
"typeof EXPERIMENTAL": JSON.stringify(false),
54+
"typeof PLUGIN_CAMERA3D": JSON.stringify(false),
55+
"typeof PLUGIN_FBINSTANT": JSON.stringify(false)
5456
}),
5557

5658
new CleanWebpackPlugin([ 'dist' ])

0 commit comments

Comments
 (0)