Compare commits

...

2 Commits

Author SHA1 Message Date
David Ascanio d71334089f fix error sintaxis 2026-05-29 19:31:31 -03:00
David Ascanio 7d3a97d8f0 no translate html 2026-05-29 18:50:18 -03:00
2 changed files with 8 additions and 0 deletions

View File

@ -49,6 +49,7 @@ const title = computed(() =>
)
function formatEntrelineaText(html: string): string {
return html;
if (!html) return ''
const sPrefix = "font-family:'Times New Roman',serif;font-style:italic;color:#c00000"

View File

@ -2,6 +2,13 @@
export default defineNuxtConfig({
modules: ['@nuxt/eslint', '@nuxt/ui', '@vueuse/nuxt', 'nuxt-meilisearch', '@nuxtjs/i18n', '@pinia/nuxt', '@sfxcode/nuxt-typesense'],
app: {
head: {
htmlAttrs: { translate: 'no' },
meta: [{ name: 'google', content: 'notranslate' }]
}
},
devtools: {
enabled: true
},