optimizePackageImports
某些包可以导出数百或数千个模块,这可能导致开发和生产环境中的性能问题。
将包添加到experimental.optimizePackageImports
中,只会加载您实际使用的模块,同时仍为您提供使用具有许多命名导出的导入语句的便利。
next.config.js
module.exports = {
experimental: {
optimizePackageImports: ['package-name'],
},
}
以下库默认情况下已优化
lucide-react
date-fns
lodash-es
ramda
antd
react-bootstrap
ahooks
@ant-design/icons
@headlessui/react
@headlessui-float/react
@heroicons/react/20/solid
@heroicons/react/24/solid
@heroicons/react/24/outline
@visx/visx
@tremor/react
rxjs
@mui/material
@mui/icons-material
recharts
react-use
@material-ui/core
@material-ui/icons
@tabler/icons-react
mui-core
react-icons/*
这有帮助吗?