我正在使用 Boot 来构建 Clojure(Script) Web 应用程序。浏览器从http://localhost:8080/main.out/calculators/frontend/core.js加载转译后的代码
该文件的最后一行是
//# sourceMappingURL=core.js.map
我可以使用 URL http://localhost:8080/main.out/calculators/frontend/core.js.map从浏览器加载该地图文件
但是,如果在 Chrome 开发工具的 Sources 面板中搜索相应的 ClojureScript 文件,它会出现错误的 URL(参见main.out/calculators/frontend
嵌套本身)
http://localhost:8080/main.out/calculators/frontend/main.out /calculators/frontend/core.cljs
加载后,不显示任何代码,并且“(从 core.js 映射的源)”出现在状态栏中。
哪个可能是问题?