我在我的 Mac 上使用 Xcode 运行 Vapor 4.3 和 Leaf,没有任何问题。
公共目录中间件已启用:
let fileMW = FileMiddleware(publicDirectory: directory)
app.middleware.use(fileMW)
一旦我使用默认值构建图像dockerfile
并在 docker 上运行它,css 和所有图像文件就不再加载。
注意:与命令附带的dockerfile
完全相同。vapor new
(更新到写这篇文章的日期)
Safari显示此错误:
[Error] Did not parse stylesheet at 'http://127.0.0.1/styles/index.css' because non CSS MIME types are not allowed in strict mode.
Chrome显示此警告:
Resource interpreted as Stylesheet but transferred with MIME type text/plain: "http://127.0.0.1/styles/index.css".
我错过了什么?