image optimization caching + fix hydratation issue form template page

This commit is contained in:
Julien Nahum 2024-01-11 09:48:57 +01:00
parent 668b0217d2
commit 630ae1df1d
3 changed files with 37 additions and 32 deletions

View File

@ -62,10 +62,8 @@
mode="out-in"
>
<div v-if="!submitted" key="form">
<p v-if="form.description && form.description !==''"
class="form-description mb-4 text-gray-700 dark:text-gray-300 whitespace-pre-wrap px-2"
v-html="form.description"
/>
<div v-if="form.description" v-html="form.description"
class="form-description mb-4 text-gray-700 dark:text-gray-300 whitespace-pre-wrap px-2"/>
<open-form v-if="form"
:form="form"
:loading="loading"
@ -86,7 +84,9 @@
<a href="https://opnform.com?utm_source=form&utm_content=powered_by"
class="text-gray-400 hover:text-gray-500 dark:text-gray-600 dark:hover:text-gray-500 cursor-pointer hover:underline text-xs"
target="_blank"
>Powered by <span class="font-semibold">OpnForm</span></a>
>
Powered by <span class="font-semibold">OpnForm</span>
</a>
</p>
</div>
<div v-else key="submitted" class="px-2">
@ -100,7 +100,9 @@
</a>
</p>
<p v-if="!form.no_branding" class="mt-5">
<a target="_parent" href="https://opnform.com/?utm_source=form&utm_content=create_form_free" class="text-nt-blue hover:underline">Create your form for free with OpnForm</a>
<a target="_parent" href="https://opnform.com/?utm_source=form&utm_content=create_form_free" class="text-nt-blue hover:underline">
Create your form for free with OpnForm
</a>
</p>
</div>
</transition>

View File

@ -51,9 +51,12 @@ export default defineNuxtConfig({
],
nitro: {
awsAmplify: {
imageOptimization: {
cacheControl: "public, max-age=600, immutable" // 10 minutes
},
imageSettings: {
formats: ['image/webp'],
dangerouslyAllowSVG: true,
minumumCacheTTL: 120
}
}
},