update
This commit is contained in:
parent
8753e72c8d
commit
51aebf04b7
4 changed files with 13 additions and 12 deletions
|
@ -82,6 +82,9 @@ export default defineConfig({
|
|||
devToolbar: {
|
||||
enabled: false
|
||||
},
|
||||
experimental: {
|
||||
serverIslands: true
|
||||
},
|
||||
vite: {
|
||||
css: {
|
||||
preprocessorOptions: {
|
||||
|
|
|
@ -4,9 +4,7 @@ const posts = await ghostClient.posts
|
|||
.browse({
|
||||
limit: "all",
|
||||
})
|
||||
.catch((err) => {
|
||||
console.error(err);
|
||||
});
|
||||
.catch(() => {null})
|
||||
---
|
||||
|
||||
<div class="posts">
|
||||
|
|
|
@ -16,7 +16,7 @@ import { BookmarkBook, ReportColumns } from "@iconoir/vue";
|
|||
|
||||
<Default MobileTitle="SudoVanilla" NoSubHeader>
|
||||
<Fragment slot="body">
|
||||
<Posts/>
|
||||
<Posts server:defer><div slot="fallback">Loading posts...</div></Posts>
|
||||
</Fragment>
|
||||
</Default>
|
||||
|
||||
|
|
|
@ -26,12 +26,19 @@ import { BookmarkBook, ReportColumns } from "@iconoir/vue";
|
|||
<BookmarkBook width={32} height={32} />
|
||||
</slot>
|
||||
</Heading>
|
||||
<Posts/>
|
||||
<Posts server:defer><div slot="fallback">Loading posts...</div></Posts>
|
||||
<Heading Title="Projects" Description="What I've Made">
|
||||
<slot slot="icon">
|
||||
<ReportColumns width={32} height={32} />
|
||||
</slot>
|
||||
</Heading>
|
||||
<LargeCard
|
||||
Title="MinPluto"
|
||||
Description="SudoVanilla Studio"
|
||||
Image="https://md.sudovanilla.org/images/mp-ba-1.png"
|
||||
CTA_Primary="View Website"
|
||||
CTA_Primary_Link="https://studio.sudovanilla.org/"
|
||||
/>
|
||||
<LargeCard
|
||||
Title="Zorn Player"
|
||||
Description="Video Player for Astro"
|
||||
|
@ -47,13 +54,6 @@ import { BookmarkBook, ReportColumns } from "@iconoir/vue";
|
|||
CTA_Primary_Link="https://ark.sudovanilla.org/Korbs/butterflyvu"
|
||||
CreditImage="Close-up Photo of Glowing Blue Butterflies by Pixabay on Pixels."
|
||||
/>
|
||||
<LargeCard
|
||||
Title="MinPluto"
|
||||
Description="Privacy Frontend for Twitch"
|
||||
Image="https://md.sudovanilla.org/images/mp-ba-1.png"
|
||||
CTA_Primary="Source Code"
|
||||
CTA_Primary_Link="https://ark.sudovanilla.org/MinPluto/MinPluto/"
|
||||
/>
|
||||
<LargeCard
|
||||
Title="Init Privacy"
|
||||
Description="Taking Back Control"
|
||||
|
|
Loading…
Reference in a new issue