adinvadim-nuxt
v1.1.0
Published
Nuxt layer starter project
Downloads
195
Readme
Nuxt Layer Starter
This is a simple Nuxt layer starter project designed to help you quickly set up and develop Nuxt app with a pre-configured layer structure (For me).
Drizzle
And then add this to the nuxt.config.ts
hub: {
database: true,
},
Nuxt I18n
For every project you need to configure locales in nuxt.config.ts
like this:
Onlye fields langDir
and locales
are required.
i18n: {
langDir: "./locales",
locales: [
{ code: "en", file: "en.yaml" },
{ code: "ru", file: "ru.yaml" },
],
},
Local Fonts
For work with local fonts you need put all fonts to public folder.
If your font has bold or italic variant, you need to name it as like font-name.bold.woff2
.