部署到heroku时找不到.scss文件

时间:2019-11-05 20:35:20

标签: mern

我正在尝试将使用mdc反应组件库的MERN应用程序部署到heroku。但是我收到一个找不到文件的错误。但是文件存在。

从nodejs服务器本地运行构建,应用程序运行,但覆盖样式不起作用。如果从客户端文件夹运行,它将按预期工作。

我怀疑这与文件夹结构或导入路径有关。下图显示了项目文件夹结构,nodejs服务器上的错误和代码。我该如何解决。提前致谢 folder structure Error From Heroku server code

# Get our boolean values from the command line
import sys
isCold= sys.argv[1] == 'True'
isRainy= sys.argv[2] == 'True'

# Your code goes here

condition = ""
if (isCold):
  condition += "cold"
else:
  condition += "warm"

if (isRainy):
  condition += " and rainy"
else:
  condition += " and dry"

print(condition)

我希望所有样式都应导入

0 个答案:

没有答案