Skip to content

Commit 84dcd31

Browse files
committed
some more prod readiness
1 parent f8c8a25 commit 84dcd31

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
BASE_URL="/dc/calendar"
2-
ORIGIN="https://chazza.me"
2+
ORIGIN=""

nuxt.config.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// https://nuxt.com/docs/api/configuration/nuxt-config
22
export default defineNuxtConfig({
3-
ssr: true,
3+
ssr: false,
44
compatibilityDate: '2024-11-01',
55
devtools: { enabled: false },
66
modules: ['@nuxt/test-utils/module', 'floating-vue/nuxt', '@nuxt/eslint'],
@@ -33,6 +33,11 @@ export default defineNuxtConfig({
3333
property: 'og:url',
3434
content: `${process.env.ORIGIN}${process.env.BASE_URL}/`,
3535
},
36+
{
37+
property: 'og:description',
38+
content:
39+
'See future variants and sprite changes in a single place with times local to you.',
40+
},
3641
{
3742
property: 'theme-color',
3843
content: '#483d8b',
@@ -46,6 +51,11 @@ export default defineNuxtConfig({
4651
'@fortawesome/fontawesome-svg-core',
4752
],
4853
},
54+
vite: {
55+
build: {
56+
assetsInlineLimit: 0,
57+
},
58+
},
4959
nitro: {
5060
esbuild: {
5161
options: {

0 commit comments

Comments
 (0)