我尝试替换 .nuxt/views/ 目录中的 error.html,但我不知道该怎么做。 我使用 Nuxt 2.15.8。
我尝试按照本文中的步骤进行操作https://blog.lichter.io/posts/nuxtjs-change-server-error-page 这篇文章有点旧了,所以我不确定这种方法是否仍然有效。
文章作品中的示例。我们可以替换默认的
error.html
。此外,我们可以在 nuxt.config.js 中配置自定义错误消息,为此我们需要在 nuxt.config.js 中添加 messages
字段。例如:
export default {
messages: {
hello_world: "Hello World!"
}
}
在您的自定义 error.html 中,我们需要这样做
<p><%= messages.hello_world %></p>