gitHub资源快速访问方法--jsDeliver

jsDelivr提供npm,GitHub,WordPress等项目的镜像。

https://cdn.jsdelivr.net/gh/ledtwo/simpleBlogs@master/img/earth_top_bg.jpeg

对于新手来说,可能翻译来自jsDelivr官方的使用方法感觉很复杂,其实可以简单一点告诉大家怎么用。

比如在我的网站主题中会用到这样的一个CSS文件:style.css

如果我使用本地文件,网站中载入的文件是:

https://mywebsite.com/wp-content/themes/mytheme/static/css/style.css

如果我把主题托管到github,那么在我的github中也会有这一个文件:

https://github.com/mygitname/mywebsite/tree/master/static/css/style.css

若我Releases一个版本0.0.1,那github中会有这样的文件:

https://github.com/mygitname/mywebsite/tree/0.0.1/static/css/style.css

如果我要使用jsDelivr托管此文件,那只需要将网站中载入的本地文件链接更换为jsDelivr CDN的链接,格式如下(gh代表github):

https://cdn.jsdelivr.net/gh/mygitname/[email protected]/static/css/style.css

若要使用缩小版本功能,则将“.min”添加到任何JS / CSS文件中,jsdelivr将自动生成文件。

https://cdn.jsdelivr.net/gh/mygitname/[email protected]/static/css/style.min.css

你可能感兴趣的:(知识区域链)