-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
23 lines (23 loc) · 832 Bytes
/
nuxt.config.ts
File metadata and controls
23 lines (23 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
export default defineNuxtConfig({
modules: ['@nuxt/fonts', '@nuxt/ui', '@nuxt/image', '@nuxtjs/color-mode', '@nuxtjs/seo', '@nuxtjs/i18n', '@vueuse/nuxt', '@nuxt/icon', 'nuxt-aos'],
devtools: { enabled: true },
app: { head: { templateParams: { separator: '•' } } },
css: ['~/assets/main.css'],
site: {
url: 'https://curi.dev.br/',
name: 'Rafael Curi',
description: 'Full Stack Developer',
identity: { type: 'Person' },
},
compatibilityDate: '2025-10-14',
i18n: {
baseUrl: 'https://curi.dev.br/',
defaultLocale: 'en',
locales: [
{ code: 'en', language: 'en-US', name: 'English (US)', file: 'en-US.json' },
{ code: 'pt', language: 'pt-BR', name: 'Português (BR)', file: 'pt-BR.json' },
],
skipSettingLocaleOnNavigate: true,
},
linkChecker: { enabled: false },
})