-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
51 lines (45 loc) · 1 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({
compatibilityDate: '2024-12-28',
future: {
compatibilityVersion: 4,
},
devtools: { enabled: true },
typescript: {
typeCheck: true,
strict: false,
},
css: ['@/assets/global.css'],
modules: [
[
'@pinia/nuxt',
{
autoImports: ['defineStore', 'acceptHMRUpdate'],
},
],
'@nuxt/eslint',
'nuxt-auth-utils',
'@nuxt/ui',
],
imports: {
dirs: ['stores'],
},
runtimeConfig: {
public: {
baseURL: 'http://localhost:3001',
name: 'Alex Spielwelt',
slogan: 'Empfehlungen & Einblicke',
instagram: '@alexspielwelt',
address: 'Max Mustermann, Musterstr. 123, 12345 Musterstadt',
email: '[email protected]',
},
session: {
name: 'nuxt-session',
password: process.env.NUXT_SESSION_PASSWORD || '',
cookie: {
sameSite: 'lax',
},
maxAge: 60 * 60 * 24 * 30, // 1 Month
},
},
});