# 源映射
在开发过程中默认启用源映射。在生产构建期间,它们被禁用,因为生成源映射会显著增加构建时间和生成时的内存使用。
Next.js provides a configuration flag you can use to enable browser source map generation during the production build:
// next.config.js
module.exports = {
productionBrowserSourceMaps: true,
}
When the productionBrowserSourceMaps
option is enabled, the source maps will be output in the same directory as the JavaScript files. Next.js will automatically serve these files when requested.
# Caveats
- Adding source maps can increase
next build
time - Increases memory usage during
next build