-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
nuxt.config.ts
43 lines (36 loc) · 922 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
38
39
40
41
42
43
export default defineNuxtConfig({
modules: ["@nuxthub/core", "@nuxt/eslint", "nuxt-auth-utils", "@nuxt/ui"],
devtools: { enabled: true },
future: { compatibilityVersion: 4 },
compatibilityDate: "2024-07-30",
hub: {
ai: true,
database: true,
blob: true,
},
eslint: {
config: {
stylistic: false,
},
},
app: {
head: {
htmlAttrs: {
lang: "en",
},
},
},
css: ["~/assets/css/main.css"],
// Uncomment if you use Safari in dev
// Create the key and crt in the root dir using:
// 1. openssl genrsa 2048 > server.key
// 2. chmod 400 server.key
// 3. openssl req -new -x509 -nodes -sha256 -days 365 -key server.key -out server.crt
// More info: https://github.com/atinux/nuxt-auth-utils/issues/78#issuecomment-2059231741
// devServer: {
// https: {
// key: "./server.key",
// cert: "./server.crt",
// },
// },
});