我有这段代码:
require "cuba"
require "mote"
require "mote/render"
Cuba.plugin(Mote::Render)
Cuba.use Rack::Static,
# urls: %w[/index],
root: File.expand_path("./public", __dir__)
Cuba.define do
on(root) do
render("index", title: "Welcome")
end
end
我正在尝试将名为“index.html”的公用文件夹(与我正在运行的此文件位于同一目录)中的文件提供服务器,但我的网站上出现错误说它不能成立。
No such file or directory @ rb_sysopen - /root/views/index.html.mote
有什么帮助吗?提前致谢!