2023-07-13 17:24:24 -07:00
|
|
|
import {fileURLToPath, URL} from 'node:url'
|
2023-05-22 17:23:18 -07:00
|
|
|
|
2023-07-13 17:24:24 -07:00
|
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
2023-05-22 12:17:07 -07:00
|
|
|
export default defineNuxtConfig({
|
2023-07-14 20:08:37 -07:00
|
|
|
modules: [
|
|
|
|
'@nuxtjs/tailwindcss',
|
|
|
|
'@nuxtjs/google-fonts',
|
|
|
|
'nuxt-typed-router',
|
|
|
|
'@vueuse/nuxt',
|
|
|
|
],
|
2023-05-22 17:23:18 -07:00
|
|
|
devServer: {
|
|
|
|
host: 'bibliothecary.test',
|
|
|
|
},
|
|
|
|
telemetry: false,
|
2023-07-13 17:24:24 -07:00
|
|
|
alias: {
|
2023-07-14 20:08:37 -07:00
|
|
|
'@data': fileURLToPath(new URL('./data', import.meta.url)),
|
2023-07-13 17:24:24 -07:00
|
|
|
},
|
2023-05-22 21:55:41 -07:00
|
|
|
googleFonts: {
|
|
|
|
preconnect: true,
|
|
|
|
families: {
|
|
|
|
Imprima: true,
|
2023-07-14 20:08:37 -07:00
|
|
|
},
|
|
|
|
},
|
2023-07-13 17:24:24 -07:00
|
|
|
})
|