笔记
共计 5 篇文章
2023-09-08
2023-07-24
使用vercel和github免费实现serverless api接口服务部署
vercel
简单介绍一下vercel
vercel和github Pages一样,也是一个免费的托管平台,同类的平台还有Netlify,提供CDN加速。
但是在相比之下,vercel在国内的访问速度更快,可以托管动态网站,并且提供Production环境和development环境。
支持持续集成,一次push就会自动化构建发布,发布在development环境,都会生成不一样的链接可供预览。
自动配置https,不用自己去FreeSSL申请证书,更是省去了一大堆证书的配置,可以绑定自定义域名。
注册vercel
打开vercel主页 https://vercel.com/login
2023-03-28
Unity一些常用的小知识点笔记,WebGL部署报Unable to parse Build解决笔记
Unity知识点一
Unity打包WebGL报Unable to parse Build
错误详情示例:
Unable to parse Build/*.framework.js.gz! This can happen if build compression was enabled but web server hosting the content was misconfigured to not serve the file with HTTP Response Header “Content-Encoding: gzip” present. Check browser Console and Devtools Network tab to debug.
图示:
解决办法
2023-03-13