From d3081dfea33d73c1364d55bdd5b247e29b5c1e7b Mon Sep 17 00:00:00 2001 From: Wouter van Veelen Date: Sat, 20 Dec 2025 02:21:40 +0100 Subject: [PATCH] fix short story missing --- src/pages/Storytelling.tsx | 4 ++-- vite.config.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pages/Storytelling.tsx b/src/pages/Storytelling.tsx index e235a6e..6a860eb 100644 --- a/src/pages/Storytelling.tsx +++ b/src/pages/Storytelling.tsx @@ -1,6 +1,6 @@ import { Fragment, type ReactElement } from 'react'; -import { Card, CardContent } from '@mui/material'; import { OutsideLink } from '../components/OutsideLink.tsx'; +import squagonUrl from '../../assets/Squagon.pdf'; export function Storytelling(): ReactElement { return ( @@ -21,7 +21,7 @@ export function Storytelling(): ReactElement { I've also participated in a small short story writing competition for{' '} Bellettrie, the student library of the University of Twente. The theme was 'Fairytale' and you can - read my entry here. + read my entry here.

); diff --git a/vite.config.ts b/vite.config.ts index e018900..5570787 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,12 +1,12 @@ -import { defineConfig } from "vite"; -import react from "@vitejs/plugin-react"; +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; // https://vite.dev/config/ export default defineConfig({ plugins: [ react({ babel: { - plugins: [["babel-plugin-react-compiler"]], + plugins: [['babel-plugin-react-compiler']], }, }), ],