KraZ
KraZ
Explore posts from servers
NNuxt
Created by KraZ on 9/25/2024 in #❓・help
Why do I get Component LayoutLoader is missing from my code?
<script setup lang="ts">
import type { ImgHTMLAttributes } from 'vue'

interface LogoProps extends Omit<ImgHTMLAttributes, 'src'> {}

const props = withDefaults(defineProps<LogoProps>(), { as: 'img' });
const config = useRuntimeConfig();
const logoUrl = `${config.cdnUrl}/images/assets/affelios-logo.svg`;
</script>

<template>
<img v-bind="props" :src="logoUrl" />
</template>
<script setup lang="ts">
import type { ImgHTMLAttributes } from 'vue'

interface LogoProps extends Omit<ImgHTMLAttributes, 'src'> {}

const props = withDefaults(defineProps<LogoProps>(), { as: 'img' });
const config = useRuntimeConfig();
const logoUrl = `${config.cdnUrl}/images/assets/affelios-logo.svg`;
</script>

<template>
<img v-bind="props" :src="logoUrl" />
</template>
2 replies
CDCloudflare Developers
Created by KraZ on 12/28/2023 in #general-help
Suddenly getting ERR_SSL_VERSION_OR_CIPHER_MISMATCH
My website is a NextJS app hosted on Vercel, and now I'm suddenly getting a ERR_SSL_VERSION_OR_CIPHER_MISMATCH error. This has only been happening for the past hour or so, despite having the site live for months. What is going on here?
36 replies