-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
executable file
·85 lines (77 loc) · 1.98 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
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
// https://nuxt.com/docs/api/configuration/nuxt-config
import svgLoader from 'vite-svg-loader'
export default defineNuxtConfig({
ssr: false,
modules: [
'@pinia/nuxt',
'@pinia-plugin-persistedstate/nuxt',
'@nuxt/eslint',
'@nuxtjs/robots',
],
piniaPersistedstate: {
cookieOptions: {
sameSite: 'strict',
},
storage: 'localStorage',
},
css: [],
vite: {
resolve: {
alias: [
{
find: /^~(.*)$/,
replacement: 'node_modules/$1',
},
],
},
plugins: [svgLoader()],
},
app: {
head: {
htmlAttrs: {
lang: 'en-US',
},
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1',
meta: [
{
hid: 'description',
name: 'description',
content:
'With SereneGrove you can create your custom guided meditation, using your favorite mindfulness exercises',
},
{ property: 'og:title', content: process.env.TITLE },
{ property: 'og:image', content: `/assets/img/social.png` },
{
property: 'og:description',
content:
'With SereneGrove you can create your custom guided meditation, using your favorite mindfulness exercises',
},
{ name: 'twitter:card', content: 'summary' },
],
title: process.env.TITLE,
link: [
{ rel: 'canonical', href: 'https://www.serenegrove.com/' },
{ rel: 'preload', href: '/assets/img/forest_bg.webp', as: 'image' },
],
script: [
{
type: 'application/ld+json',
children: JSON.stringify({
'@context': 'http://Schema.org',
'@type': 'Organization',
url: 'https://www.serenegrove.com',
}),
},
],
},
},
runtimeConfig: {
public: {
test1: process.env.TEST_1,
feedback_form: process.env.FEEDBACK_FORM,
title: process.env.TITLE,
},
},
compatibilityDate: '2024-08-06',
})