-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
37 lines (37 loc) · 947 Bytes
/
nuxt.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
head: {
title: "Markwhen",
link: [
{ rel: "preconnect", href: "https://fonts.googleapis.com" },
{
rel: "preconnect",
href: "https://fonts.gstatic.com",
crossorigin: "",
},
{
href: "https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap&display=swap",
rel: "stylesheet",
},
],
script: [
{
defer: true,
src: "https://static.cloudflareinsights.com/beacon.min.js",
"data-cf-beacon": '{"token": "1422b56abdfb49a88de13b0e2edc2805"}',
},
],
},
},
devtools: { enabled: true },
modules: ["@nuxtjs/tailwindcss"],
devServer: {
port: 3001,
},
tailwindcss: {
config: {
content: ["./src/**/*.vue"],
},
},
});