出于Heroku的特殊目的,我需要部署该解决方案,该解决方案会将所有路由重定向到create-react-app index.html。
$ tree -L 2 -I 'node_modules|temp|semantic|build'
.
├── package.json
├── package-lock.json
├── public
│ ├── favicon.ico
│ ├── index.html // all requests from "redirect" express app should point to this file
│ ├── libs
│ ├── manifest.json
│ └── semantic.css
├── README.md
├── redirect // express app
│ ├── app.js
│ ├── bin
│ ├── package.json
│ ├── public
│ ├── views
│ └── yarn.lock
├── semantic.json
├── src
│ ├── appConfig.js
│ ├── assets
│ ├── components
│ ├── index.js
│ ├── index.scss
│ ├── old
│ ├── pages
│ ├── serviceWorker.js
│ └── utils
├── yarn.lock
└── yarn-error.log
redirect
目录包含express应用程序,在这里我需要将每个请求重定向到index.html
一切都很好,但是在index.html中有env变量%PUBLIC_URL%,当我从重定向文件夹运行npm start时,它将失败并出现以下错误
pandemic@bar ~/foo/redirect
$ npm start
> redirect@0.0.0 start <path>\redirect
> node ./bin/www
URIError: Failed to decode param '/%PUBLIC_URL%/libs/pdfmake/pdfmake.min.js'
如何解决此问题?
注释:我正在使用Windows