We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72665b2 commit f3ebfd6Copy full SHA for f3ebfd6
1 file changed
nuxt.config.ts
@@ -288,7 +288,11 @@ export default defineNuxtConfig({
288
htmlValidator: {
289
enabled: !isCI || (provider !== 'vercel' && !!process.env.VALIDATE_HTML),
290
options: {
291
- rules: { 'meta-refresh': 'off' },
+ rules: {
292
+ 'meta-refresh': 'off',
293
+ // OG image HTML inherits full page titles that routinely exceed 70 chars
294
+ 'long-title': 'off',
295
+ },
296
},
297
failOnError: true,
298
0 commit comments