Sources Hands-On 6

Source Map Demo for Performance Profiling

📝 Instructions:

  1. 🔧 Open DevTools (F12)
  2. 🔍 Go to the Sources tool
  3. 📄 See the min file and its source file - this is due to the comment "//# sourceMappingURL=complex-operations.js.map"
  4. 🗂️ You can see the source map file in the "Developer Recources" tool
  5. ✏️ Override the min file and delete this comment
  6. 👁️ You will no longer see the source file, just the min file
  7. ⚙️ Make sure to enable source maps in the devtools settings
  8. ⬇️ Click the button below to download the source file
  9. ⬇️ Click the button below to download the source map file
  10. 💾 Host the source maps locally. You can put it in the override folder with the min file you override and copy its URL
  11. 📁 Load the downloaded source file to see unminified function names by opening the deployed (processed) file in Sources, right-click it in the Editor, and select Add source map from the menu.