-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
137 lines (135 loc) · 3.71 KB
/
astro.config.mjs
File metadata and controls
137 lines (135 loc) · 3.71 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
// @ts-check
import { defineConfig, envField } from 'astro/config';
import node from '@astrojs/node';
import vercel from '@astrojs/vercel';
import matomo from 'astro-matomo';
import fileDownloader from './src/integrations/file-downloader.ts';
// Use Vercel adapter only if explicitly set to 'true' (defaults to false = Node.js)
const USE_VERCEL = process.env.USE_VERCEL_ADAPTER === 'true';
const MATOMO_ENABLED = process.env.MATOMO_ENABLED === 'true'
&& !!process.env.MATOMO_HOST
&& !!process.env.MATOMO_SITE_ID;
// https://astro.build/config
export default defineConfig({
output: 'server',
adapter: USE_VERCEL ? vercel() : node({
mode: 'standalone'
}),
integrations: [
fileDownloader({
files: MATOMO_ENABLED ? [
{
url: `https://${process.env.MATOMO_HOST}/matomo.js`,
outputPath: 'public/js/wtfisthis.js',
name: 'Matomo Analytics',
},
] : [],
}),
matomo({
enabled: MATOMO_ENABLED,
host: `https://${process.env.MATOMO_HOST}/`,
disableCookies: true,
siteId: Number(process.env.MATOMO_SITE_ID) || 1,
customSrcUrl: '/js/wtfisthis.js',
heartBeatTimer: 5,
viewTransition: false,
}),
],
env: {
schema: {
LASTFM_ENABLED: envField.boolean({
context: 'server',
access: 'public',
optional: true,
default: true,
}),
LASTFM_API_KEY: envField.string({
context: 'server',
access: 'secret',
optional: true,
}),
// Cache provider: 'filesystem' or 'kv'
CACHE_PROVIDER: envField.enum({
context: 'server',
access: 'public',
values: ['filesystem', 'kv'],
optional: true,
default: 'filesystem'
}),
// Cache TTL configuration (in hours)
CACHE_TTL_7DAY: envField.number({
context: 'server',
access: 'public',
optional: true,
default: 6
}),
CACHE_TTL_1MONTH: envField.number({
context: 'server',
access: 'public',
optional: true,
default: 12
}),
CACHE_TTL_3MONTH: envField.number({
context: 'server',
access: 'public',
optional: true,
default: 24
}),
CACHE_TTL_6MONTH: envField.number({
context: 'server',
access: 'public',
optional: true,
default: 48
}),
CACHE_TTL_12MONTH: envField.number({
context: 'server',
access: 'public',
optional: true,
default: 72
}),
CACHE_TTL_OVERALL: envField.number({
context: 'server',
access: 'public',
optional: true,
default: 168
}),
// Cache size limits
CACHE_MAX_SIZE_MB: envField.number({
context: 'server',
access: 'public',
optional: true,
default: 1024
}),
CACHE_MAX_ENTRIES: envField.number({
context: 'server',
access: 'public',
optional: true,
default: 10000
}),
// Matomo Analytics - all three must be set to enable tracking
MATOMO_ENABLED: envField.boolean({
context: 'client',
access: 'public',
optional: true,
default: false,
}),
MATOMO_HOST: envField.string({
context: 'server',
access: 'public',
optional: true,
}),
MATOMO_SITE_ID: envField.number({
context: 'server',
access: 'public',
optional: true,
}),
// Optional — required to forward real visitor IP to Matomo (cip param)
// Generate in Matomo: Administration → Security → Auth tokens
MATOMO_TOKEN_AUTH: envField.string({
context: 'server',
access: 'secret',
optional: true,
}),
}
}
});