如何在 Nuxt 2 中将 static error.html 替换为 custom-error.html

问题描述 投票:0回答:1

我尝试替换 .nuxt/views/ 目录中的 error.html,但我不知道该怎么做。 我使用 Nuxt 2.15.8。

我尝试按照本文中的步骤进行操作https://blog.lichter.io/posts/nuxtjs-change-server-error-page 这篇文章有点旧了,所以我不确定这种方法是否仍然有效。

vuejs2 nuxt.js server-side-rendering
1个回答
2
投票

文章作品中的示例。我们可以替换默认的

error.html
。此外,我们可以在 nuxt.config.js 中配置自定义错误消息,为此我们需要在 nuxt.config.js 中添加
messages
字段。例如:

export default {
 messages: {
   hello_world: "Hello World!"
 }
}

在您的自定义 error.html 中,我们需要这样做

<p><%= messages.hello_world %></p>
© www.soinside.com 2019 - 2024. All rights reserved.