-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
52 lines (51 loc) · 1.07 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// https://nuxt.com/docs/api/configuration/nuxt-config
import process from 'node:process'
export default defineNuxtConfig({
devtools: { enabled: false },
app: {
head: {
link: [
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@200..900&family=Montserrat:wght@500&display=swap',
},
],
script: [
{
src: 'https://unpkg.com/@phosphor-icons/web',
},
],
},
},
plugins: [
{
src: '~/plugins/microsoft-clarity.js',
ssr: false,
mode: 'client',
},
],
components: {
global: true,
dirs: [
'~/components/common',
'~/components/hallows',
'~/components/utils',
],
},
css: ['~/styles/utils/tailwind.css', '~/styles/main.scss'],
postcss: {
plugins: {
'postcss-import': {},
'tailwindcss/nesting': {},
'tailwindcss': {},
'autoprefixer': {},
},
},
modules: [
'@nuxthq/studio',
'@nuxt/content',
],
devServer: {
host: process.env.NUXT_DAEMON_IP,
},
})