-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstx.config.ts
More file actions
32 lines (28 loc) · 773 Bytes
/
stx.config.ts
File metadata and controls
32 lines (28 loc) · 773 Bytes
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
export default {
// Paths relative to root ('resources', auto-detected).
// Don't include the 'resources/' prefix — it's already the root.
componentsDir: 'components',
layoutsDir: 'layouts',
partialsDir: 'components',
pagesDir: 'views',
publicDir: 'public',
storesDir: 'stores',
app: {
head: {
title: 'Analytics Dashboard',
lang: 'en',
meta: [
{ name: 'description', content: 'Privacy-first analytics dashboard powered by DynamoDB' },
{ name: 'theme-color', content: '#0f1117' },
] as const,
bodyClass: 'bg-bg text-text font-sans antialiased',
},
},
css: './crosswind.config.ts',
ssr: true,
router: {
container: '#main-content',
viewTransitions: true,
prefetch: true,
},
}