Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit 6f17f72

Browse files
author
Daniel Brain
committed
Correctly output IE builds
1 parent 992ab18 commit 6f17f72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webpack.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export let WEBPACK_CONFIG_MIN = getWebpackConfig({
2727
});
2828

2929
export let WEBPACK_CONFIG_IE = getWebpackConfig({
30-
filename: `${ FILE_NAME }.js`,
30+
filename: `${ FILE_NAME }.ie.js`,
3131
modulename: MODULE_NAME,
3232
vars: {
3333
__IE_POPUP_SUPPORT__: true,
@@ -36,7 +36,7 @@ export let WEBPACK_CONFIG_IE = getWebpackConfig({
3636
});
3737

3838
export let WEBPACK_CONFIG_IE_MIN = getWebpackConfig({
39-
filename: `${ FILE_NAME }.min.js`,
39+
filename: `${ FILE_NAME }.ie.min.js`,
4040
modulename: MODULE_NAME,
4141
minify: true,
4242
vars: {

0 commit comments

Comments
 (0)