Compare commits
3 Commits
3199835e83
...
4079e4ecfb
| Author | SHA1 | Date | |
|---|---|---|---|
| 4079e4ecfb | |||
| eea020b136 | |||
| 5161bff624 |
@@ -12,7 +12,6 @@ defineProps<{ image?: AcfImageFragment }>();
|
|||||||
:width="image.mediaDetails?.width"
|
:width="image.mediaDetails?.width"
|
||||||
:height="image.mediaDetails?.height"
|
:height="image.mediaDetails?.height"
|
||||||
:style="{ objectPosition: image.objectPosition || 'center' }"
|
:style="{ objectPosition: image.objectPosition || 'center' }"
|
||||||
format="avif,webp"
|
|
||||||
placeholder
|
placeholder
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ const { data: siteOptions } = await useSiteOptions();
|
|||||||
<template>
|
<template>
|
||||||
<footer class="bg-accented links:link-prose">
|
<footer class="bg-accented links:link-prose">
|
||||||
<div class="container py-6">
|
<div class="container py-6">
|
||||||
<AcfSocialProfiles :social="parseAcfSocial(siteOptions)" />
|
<AcfSocial :social="parseAcfSocial(siteOptions)" />
|
||||||
</div>
|
</div>
|
||||||
<SiteFooterBottom />
|
<SiteFooterBottom />
|
||||||
</footer>
|
</footer>
|
||||||
|
|||||||
@@ -63,7 +63,6 @@ export default defineNuxtConfig({
|
|||||||
name: "moonshine",
|
name: "moonshine",
|
||||||
// Cloudflare Workers settings
|
// Cloudflare Workers settings
|
||||||
compatibility_date: "2026-01-27",
|
compatibility_date: "2026-01-27",
|
||||||
main: "./.output/server/index.mjs",
|
|
||||||
observability: { enabled: true },
|
observability: { enabled: true },
|
||||||
preview_urls: false,
|
preview_urls: false,
|
||||||
// Environment variables
|
// Environment variables
|
||||||
@@ -72,11 +71,6 @@ export default defineNuxtConfig({
|
|||||||
NUXT_SITE_URL: siteUrl,
|
NUXT_SITE_URL: siteUrl,
|
||||||
NUXT_WP_URL: wpUrl,
|
NUXT_WP_URL: wpUrl,
|
||||||
},
|
},
|
||||||
// Bindings
|
|
||||||
assets: {
|
|
||||||
binding: "ASSETS",
|
|
||||||
directory: "./.output/public/",
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -108,8 +102,10 @@ export default defineNuxtConfig({
|
|||||||
},
|
},
|
||||||
|
|
||||||
image: {
|
image: {
|
||||||
...isDev ? {} : { provider: "cloudflare", cloudflare: { baseURL: "/" } },
|
provider: isDev ? "ipx" : "cloudflare",
|
||||||
|
cloudflare: { baseURL: `${siteUrl}/` },
|
||||||
domains: [wpDomain],
|
domains: [wpDomain],
|
||||||
|
format: ["avif", "webp"],
|
||||||
},
|
},
|
||||||
|
|
||||||
robots: {
|
robots: {
|
||||||
|
|||||||
Reference in New Issue
Block a user