Skip to content

Commit 7756d18

Browse files
committedOct 25, 2024··
chore: lint
1 parent 9d7c65e commit 7756d18

File tree

1 file changed

+23
-30
lines changed

1 file changed

+23
-30
lines changed
 

Diff for: ‎playground/nuxt.config.ts

+23-30
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,40 @@
11
export default defineNuxtConfig({
2+
3+
extends: [
4+
'./base',
5+
],
6+
27
modules: [
38
'../src/module',
49
'@unocss/nuxt',
510
'@nuxt/test-utils/module',
611
'@nuxthub/core',
712
],
813

9-
extends: [
10-
'./base',
11-
],
14+
imports: {
15+
autoImport: false,
16+
},
17+
18+
devtools: {
19+
enabled: true,
20+
},
21+
22+
compatibilityDate: '2024-07-18',
23+
24+
nitro: {
25+
logLevel: 'verbose',
26+
},
1227

1328
hub: {
1429
cache: true,
1530
},
1631

32+
typescript: {
33+
includeWorkspace: true,
34+
},
35+
1736
// ssr: false,
37+
1838
icon: {
1939
customCollections: [
2040
{
@@ -35,31 +55,4 @@ export default defineNuxtConfig({
3555
scan: true,
3656
},
3757
},
38-
39-
nitro: {
40-
logLevel: 'verbose',
41-
// externals: {
42-
// external: [
43-
// (id) => {
44-
// if (id.match(/(?:[\\/]|^)(@iconify-json[\\/]|@iconify[\\/]json)/)) {
45-
// return true
46-
// }
47-
// },
48-
// ],
49-
// },
50-
},
51-
52-
devtools: {
53-
enabled: true,
54-
},
55-
56-
typescript: {
57-
includeWorkspace: true,
58-
},
59-
60-
imports: {
61-
autoImport: false,
62-
},
63-
64-
compatibilityDate: '2024-07-18',
6558
})

0 commit comments

Comments
 (0)
Please sign in to comment.