// nuxt.config.js
export default {
....
hooks: {
'generate:page': (page) => {
page.html = page.html.replace('слово', 'абракадабра')
},
'render:route': (url, page, { req, res }) => {
page.html = page.html.replace('слово', 'абракадабра')
}
}
....
}