-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
34 lines (30 loc) · 951 Bytes
/
nuxt.config.ts
File metadata and controls
34 lines (30 loc) · 951 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
33
34
export default defineNuxtConfig({
compatibilityDate: '2024-11-01',
devtools: { enabled: true },
future: {
compatibilityVersion: 4,
},
// Cloudflare Workers preset
nitro: {
preset: 'cloudflare',
},
app: {
head: {
title: 'Straco House - Coming Soon',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'description', content: 'Straco House - Opening October 2026' },
{ name: 'theme-color', content: '#000000' },
{ property: 'og:title', content: 'Straco House' },
{ property: 'og:description', content: 'Coming Soon - October 2026' },
{ property: 'og:type', content: 'website' },
],
link: [
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' },
{ rel: 'icon', type: 'image/png', href: '/favicon.png' },
],
},
},
css: ['~/assets/css/main.css'],
})