Gatsbyjs 关闭 source-map

默认情况下 build,会生成 source-map,就是说生产环境中,别人能够通过chrome devTools 查看你的源码。
可以通过以下方式关闭。

gatsby-node.js 中添加

 // If production JavaScript and CSS build
 if (stage === 'build-javascript') {
   // Turn off source maps
   actions.setWebpackConfig({
     devtool: false,
   })
 }
};

你可能感兴趣的:(Gatsbyjs 关闭 source-map)