19 lines
455 B
TypeScript
19 lines
455 B
TypeScript
import {fileURLToPath, URL} from 'node:url'
|
|
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
modules: ['@nuxtjs/tailwindcss', '@nuxtjs/google-fonts', 'nuxt-typed-router'],
|
|
devServer: {
|
|
host: 'bibliothecary.test',
|
|
},
|
|
telemetry: false,
|
|
alias: {
|
|
'@data': fileURLToPath(new URL('./data', import.meta.url))
|
|
},
|
|
googleFonts: {
|
|
preconnect: true,
|
|
families: {
|
|
Imprima: true,
|
|
}
|
|
}
|
|
})
|