在create-react-app上运行构建后的空白页
尝试在netlify上部署create-react-app,但是我的构建是空白页。我正在使用.env文件加载firebase api密钥,这是构建问题吗?
即使当我尝试在计算机的本地空白页上打开它时,它也会在控制台中输出错误:“源“ file:///event-
app/static/js/main.108757a0.js的源加载失败””
package.json:https
:
//gist.github.com/Verthon/f82371ad2bb636b2e95c5b7697aa0bb5
➜ event-app git:(master) ✗ npm run build> event-app@0.1.0 build /home/jurr/Projects/event-app
> node scripts/build.js
Creating an optimized production build...
Compiled with warnings.
./src/components/Router.js
Line 12: 'withFirebase' is defined but never used no-unused-vars
./src/components/Firebase.js
Line 21: 'Firebase' is defined but never used no-unused-vars
Search for the keywords to learn more about each warning.
To ignore, add // eslint-disable-next-line to the line before.
File sizes after gzip:
282.86 KB build/static/js/main.108757a0.js
3.1 KB build/static/css/main.8e671453.css
回答:
我已经通过homepage: "."
根据此文档设置https://facebook.github.io/create-react-
app/docs/deployment解决了问题
以上是 在create-react-app上运行构建后的空白页 的全部内容, 来源链接: utcz.com/qa/414754.html