-
-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: next build lagging #9
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #9 +/- ##
==========================================
+ Coverage 82.30% 82.36% +0.05%
==========================================
Files 25 25
Lines 650 652 +2
Branches 236 232 -4
==========================================
+ Hits 535 537 +2
Misses 114 114
Partials 1 1 ☔ View full report in Codecov by Sentry. |
]; | ||
const v6Eth0 = `(?:%[0-9a-zA-Z]{1,})?`; // %eth0 %1 | ||
|
||
const v6 = `(?:${v6List.join('|')})${v6Eth0}`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
怎么发现的。。
我记得以前是不是编译成 '+' 来减小包体积来着? |
那个是 antd 侧的,rc 侧还是保持兼容态。 |
NextJS will build long time when code has
.concat
:Since it's build from babel, we can not destruct this without configuration. Modify with list join instead.
ref ant-design/ant-design#48758