mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-25 09:16:15 -04:00
feat(pages): home page base
This commit is contained in:
parent
87cfc9c1f3
commit
202896fa95
38 changed files with 3130 additions and 775 deletions
|
@ -2,4 +2,40 @@
|
|||
export default defineNuxtConfig({
|
||||
compatibilityDate: '2024-04-03',
|
||||
devtools: { enabled: true },
|
||||
|
||||
extends: [
|
||||
'src/modules/app',
|
||||
],
|
||||
|
||||
modules: [
|
||||
'@nuxtjs/tailwindcss',
|
||||
'shadcn-nuxt',
|
||||
'@nuxt/fonts',
|
||||
'@nuxt/icon',
|
||||
'@vueuse/nuxt',
|
||||
'@nuxtjs/color-mode',
|
||||
'@nuxtjs/i18n',
|
||||
],
|
||||
|
||||
fonts: {
|
||||
provider: 'bunny',
|
||||
defaults: {
|
||||
weights: [400, 500, 600, 700, 800],
|
||||
},
|
||||
},
|
||||
|
||||
colorMode: {
|
||||
preference: 'system',
|
||||
fallback: 'dark',
|
||||
classSuffix: '',
|
||||
storage: 'cookie',
|
||||
storageKey: 'itts-color-mode',
|
||||
},
|
||||
|
||||
i18n: {
|
||||
strategy: 'prefix',
|
||||
vueI18n: './i18n.config.ts',
|
||||
locales: ['en', 'fr'],
|
||||
defaultLocale: 'en',
|
||||
},
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue