未验证 提交 50b5334a 编写于 作者: J Joe Haddad 提交者: GitHub

`typeof window` will always be undefined on the server (#7605)

This should allow Terser to tree shake code branches.
上级 3047e453
......@@ -451,6 +451,9 @@ export default async function getBaseWebpackConfig(
!config.experimental.autoExport &&
config.experimental.exportTrailingSlash
),
...(isServer
? { 'typeof window': JSON.stringify('undefined') }
: undefined),
}),
!isServer &&
new ReactLoadablePlugin({
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册