-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
51 lines (51 loc) · 1.13 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
ssr: false,
app: {
head: {
charset: 'utf-8',
viewport: 'width=500, initial-scale=1',
title: 'Nuxt 3',
meta: [
{ name: 'description', content: 'Nuxt 3' } // ~ <meta name="description" content="Nuxt 3">
],
link: [
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap'
}
]
}
},
css: ['@/assets/scss/main.scss'],
modules: ['@vuestic/nuxt'],
vuestic: {
config: {
colors: {
variables: {
primary: '#284e68',
backgroundPrimary: '#f9f9f7',
backgroundSecondary: '#f9f9f7',
backgroundElement: '#fff',
backgroundBorder: '#284E687F'
}
},
components: {
VaInput: {
outline: true,
}
}
}
},
vite: {
css: {
preprocessorOptions: {
scss: {
additionalData: `
@import "@/assets/scss/utils/_mixins.scss";
`
}
}
}
}
});