what is http.Handle("/auto.js.map", live.JavascriptMap{})? #62
Answered
by
jfyne
chrismalek
asked this question in
Q&A
-
I am trying to understand the concepts of this not having worked with too much front end javascript. This project looks epic. I am trying to figure out what this is doing which I found in the examples.
|
Beta Was this translation helpful? Give feedback.
Answered by
jfyne
Jan 27, 2023
Replies: 1 comment
-
The map file is used by browser dev tools for debugging. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/SourceMap It is unnecessary to include it for production, and is only good for tracking down frontend errors. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
chrismalek
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The map file is used by browser dev tools for debugging.
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/SourceMap
It is unnecessary to include it for production, and is only good for tracking down frontend errors.