Optimize stripe links (#2258)
This commit is contained in:
parent
a0bd011b80
commit
599f23c8aa
@ -77,13 +77,6 @@ export default defineNuxtConfig({
|
|||||||
title: "Modrinth mods",
|
title: "Modrinth mods",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
script: [
|
|
||||||
{
|
|
||||||
src: "https://js.stripe.com/v3/",
|
|
||||||
defer: true,
|
|
||||||
async: true,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
vite: {
|
vite: {
|
||||||
|
|||||||
@ -108,6 +108,16 @@ useSeoMeta({
|
|||||||
ogDescription: description,
|
ogDescription: description,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
useHead({
|
||||||
|
script: [
|
||||||
|
{
|
||||||
|
src: "https://js.stripe.com/v3/",
|
||||||
|
defer: true,
|
||||||
|
async: true,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
|
||||||
const vintl = useVIntl();
|
const vintl = useVIntl();
|
||||||
|
|
||||||
const data = useNuxtApp();
|
const data = useNuxtApp();
|
||||||
|
|||||||
@ -344,6 +344,16 @@ definePageMeta({
|
|||||||
middleware: "auth",
|
middleware: "auth",
|
||||||
});
|
});
|
||||||
|
|
||||||
|
useHead({
|
||||||
|
script: [
|
||||||
|
{
|
||||||
|
src: "https://js.stripe.com/v3/",
|
||||||
|
defer: true,
|
||||||
|
async: true,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
|
||||||
const data = useNuxtApp();
|
const data = useNuxtApp();
|
||||||
const config = useRuntimeConfig();
|
const config = useRuntimeConfig();
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user