We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67771d7 commit a324b04Copy full SHA for a324b04
1 file changed
config/webpack.dist.config.js
@@ -13,15 +13,18 @@ module.exports = {
13
phaser: './phaser.js',
14
'phaser.min': './phaser.js',
15
'phaser-arcade-physics': './phaser-arcade-physics.js',
16
- 'phaser-arcade-physics.min': './phaser-arcade-physics.js'
+ 'phaser-arcade-physics.min': './phaser-arcade-physics.js',
17
+ 'phaser-ie9': './phaser-ie9.js',
18
+ 'phaser-ie9.min': './phaser-ie9.js'
19
},
20
21
output: {
22
path: `${__dirname}/../dist/`,
23
filename: '[name].js',
24
library: 'Phaser',
25
libraryTarget: 'umd',
- umdNamedDefine: true
26
+ umdNamedDefine: true,
27
+ globalObject: 'this'
28
29
30
performance: { hints: false },
0 commit comments