我试图指示 Babel 不要转译特定目录(与排除 node_modules 的方式相同)。
我正在使用 Next.js。当我运行构建时,它变得非常慢,因为 babel 正在爬过一个巨大的 js 文件,直到它给出以下消息:
The code generator has deoptimised the styling of /PATH/ as it exceeds
the max of 500KB.
在 babel.config.json 中:
{
...,
"exclude": ["node_modules", "prisma"]
}
通天塔版本:7.12.13