-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
115 lines (94 loc) · 2.27 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import { createHash, type BinaryLike } from 'crypto'
import { basename } from 'path'
type ComponentType = 'page' | 'layout' | 'component';
function getComponentType(filePath: string) : ComponentType {
if (filePath.includes('/app/pages/')) {
return 'page';
} else if (filePath.includes('/app/layouts/')) {
return 'layout';
} else {
return 'component';
}
}
function getComponentName(componentName: string, componentType: ComponentType) : string {
if (componentType === 'component') {
return componentName;
}
return `${componentType}-${componentName}`;
}
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
modules: [
'@nuxt/fonts',
'@nuxt/icon'
],
experimental: {
viewTransition: true,
scanPageMeta: true
},
typescript: {
strict: true,
typeCheck: true
},
app: {
rootAttrs: {
class: 'perd-root'
}
},
devtools: {
enabled: true
},
components: {
dirs: []
},
compatibilityDate: '2024-11-03',
nitro: {
preset: 'cloudflare-pages'
},
future: {
compatibilityVersion: 4
},
icon: {
clientBundle: {
scan: true
}
},
vue: {
compilerOptions: {
/**
* We're using new `<select>` customizations
*
* @see [RFC Customizable Select](https://developer.chrome.com/blog/rfc-customizable-select?hl=en)
*/
isCustomElement: (tag) => tag === 'selectedoption'
}
},
vite: {
css: {
modules: {
generateScopedName(className: string, filename: string, data: BinaryLike) : string {
const hash = createHash('sha256')
.update(data)
.digest('hex')
.slice(0, 6);
const filePath = filename
.replace(/\.vue(?:\?.+?)?$/u, '')
.replace(/\[|\]/gu, '');
const baseName = basename(filePath);
const componentType = getComponentType(filePath);
const componentName = getComponentName(baseName, componentType);
return `${componentName}_${className}_${hash}`;
}
},
preprocessorOptions: {
scss: {
api: 'modern-compiler',
additionalData: `
@use "~/assets/styles/media" as *;
@use "~/assets/styles/utils" as *;
`
}
}
}
}
})