Bootsmann
Bootsmann
NNuxt
Created by fsyntax on 9/13/2023 in #❓・help
Weird RollupError on running `nuxi build`
okay 🙂 i've had similar issues with ssr, and the transpile could fix some errors during ssr
7 replies
NNuxt
Created by fsyntax on 9/13/2023 in #❓・help
Weird RollupError on running `nuxi build`
hva you tried adding
build: {
transpile: ["unenv/runtime/mock/proxy-cjs/"],
},
build: {
transpile: ["unenv/runtime/mock/proxy-cjs/"],
},
to your nuxt.config? 🙂 or maybe with the vue-email
7 replies
NNuxt
Created by Bootsmann on 1/2/2023 in #❓・help
Vue 3 library, issues with SSR
yes i found a solution 🙂 we are using this on a daily basis
8 replies
NNuxt
Created by Bootsmann on 1/2/2023 in #❓・help
Vue 3 library, issues with SSR
<LaitBreadcrumb v-if="breadcrumbs" :breadcrumb-items="breadcrumbs">
<template v-for="(slot, index) in breadcrumbs" #[`item-${index}`] :key="index">
<div>
<NuxtLink v-if="slot" :to="slot.to">{{ slot.text }}</NuxtLink>
</div>
</template>
</LaitBreadcrumb>
<LaitBreadcrumb v-if="breadcrumbs" :breadcrumb-items="breadcrumbs">
<template v-for="(slot, index) in breadcrumbs" #[`item-${index}`] :key="index">
<div>
<NuxtLink v-if="slot" :to="slot.to">{{ slot.text }}</NuxtLink>
</div>
</template>
</LaitBreadcrumb>
8 replies
NNuxt
Created by Bootsmann on 1/2/2023 in #❓・help
Vue 3 library, issues with SSR
takes an array of
export interface IBreadcrumbLink {
text: string;
disabled: boolean;
to: string;
}
export interface IBreadcrumbLink {
text: string;
disabled: boolean;
to: string;
}
8 replies
NNuxt
Created by Bootsmann on 1/2/2023 in #❓・help
Vue 3 library, issues with SSR
import { LaitBreadcrumb } from "@lait/lait-frontend-library/components/LaitBreadcrumb";
import { LaitBreadcrumb } from "@lait/lait-frontend-library/components/LaitBreadcrumb";
8 replies
NNuxt
Created by Bootsmann on 1/2/2023 in #❓・help
Vue 3 library, issues with SSR
8 replies