在指南http://www.phoenixframework.org/docs/views中,当我在debug_errors: false
中设置config/dev.exs
时,我应该能够显示404页面。但是,当我发现"找不到页面" 时,它会发送404并显示"出现问题" 。顺便说一句,我确实得到了#34;找不到页面"在生产中。
config :myapp, Myapp.Endpoint,
http: [port: 4000],
debug_errors: false,
code_reloader: true,
check_origin: false,
watchers: [node: ["node_modules/brunch/bin/brunch", "watch", "--stdin",
cd: Path.expand("../", __DIR__)]]