Skip to content

Commit 367e6f6

Browse files
committed
Fix integration tests
1 parent 3c533b6 commit 367e6f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/app/config/webpack.common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const SANDBOX_ONLY = !!process.env.SANDBOX_ONLY;
1818
const __DEV__ = NODE_ENV === 'development'; // eslint-disable-line no-underscore-dangle
1919
const __PROD__ = NODE_ENV === 'production'; // eslint-disable-line no-underscore-dangle
2020
// const __TEST__ = NODE_ENV === 'test'; // eslint-disable-line no-underscore-dangle
21-
const babelConfig = __DEV__ ? babelDev : babelProd;
21+
const babelConfig = __DEV__ && !SANDBOX_ONLY ? babelDev : babelProd;
2222

2323
const publicPath = SANDBOX_ONLY || __DEV__ ? '/' : getHost.default() + '/';
2424

0 commit comments

Comments
 (0)