这是一个具有样式化组件的React应用程序,其Node后端通过git push heroku master
部署到Heroku
我使用import {...} from './style'
从单独的文件中导入每个组件的样式。
文件结构为:
OptionsCarousel
|index.js
|style.js
这对我来说非常有意义,并且可以通过npm start
和npm run build -> serve -s build
在本地工作。没有问题。但是,当部署到Heroku时,在优化构建阶段,它会失败并显示以下错误:
remote: Creating an optimized production build...
remote: Failed to compile.
remote:
remote: ./src/OptionsCarousel/index.js
remote: Cannot find file './style' in './src/OptionsCarousel'.
任何有关构建此问题的更好方法的建议,以及引起该问题的原因,将不胜感激。