谷歌美化对我来说非常有用。我已经构建了一个带有 Twitter 引导前端和 google prettify 语法突出显示的应用程序。但是该应用程序也用于离线工作,例如本地主机,所以我包含了 prettify.js 和 prettify.css。
现在当我离线并在应用程序中工作时,它会开始通过本地 prettify.js 版本查找在线代码:
https://google-code-prettify.googlecode.com/svn/loader/lang-"+encodeURIComponent(D[m])+".js
https://google-code-prettify.googlecode.com/svn/loader/skins/"+encodeURIComponent(N[m])+".css
https://google-code-prettify.googlecode.com/svn/loader/prettify.css
它离线工作正常,但为什么它请求外部 js 和 css 文件,我如何从缩小的 prettify.js 中删除它?我不需要它,它正在减慢应用程序的速度。