18 lines
618 B
TypeScript
18 lines
618 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
|
|
export default defineNuxtConfig({
|
|
app: {
|
|
head: {
|
|
link: [
|
|
{rel: 'preconnect', href: 'https://fonts.googleapis.com'},
|
|
{rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: '' },
|
|
{rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Imprima&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'}
|
|
],
|
|
},
|
|
},
|
|
modules: ['@nuxtjs/tailwindcss'],
|
|
devServer: {
|
|
host: 'bibliothecary.test',
|
|
},
|
|
telemetry: false,
|
|
});
|