fix short story missing

This commit is contained in:
Wouter van Veelen
2025-12-20 02:21:40 +01:00
parent 87932f1934
commit d3081dfea3
2 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
import { Fragment, type ReactElement } from 'react'; import { Fragment, type ReactElement } from 'react';
import { Card, CardContent } from '@mui/material';
import { OutsideLink } from '../components/OutsideLink.tsx'; import { OutsideLink } from '../components/OutsideLink.tsx';
import squagonUrl from '../../assets/Squagon.pdf';
export function Storytelling(): ReactElement { export function Storytelling(): ReactElement {
return ( return (
@@ -21,7 +21,7 @@ export function Storytelling(): ReactElement {
I've also participated in a small short story writing competition for{' '} I've also participated in a small short story writing competition for{' '}
<OutsideLink href='https://bellettrie.utwente.nl'>Bellettrie</OutsideLink>, the <OutsideLink href='https://bellettrie.utwente.nl'>Bellettrie</OutsideLink>, the
student library of the University of Twente. The theme was 'Fairytale' and you can student library of the University of Twente. The theme was 'Fairytale' and you can
read my entry <OutsideLink href='assets/Squagon.pdf'>here</OutsideLink>. read my entry <OutsideLink href={squagonUrl}>here</OutsideLink>.
</p> </p>
</Fragment> </Fragment>
); );

View File

@@ -1,12 +1,12 @@
import { defineConfig } from "vite"; import { defineConfig } from 'vite';
import react from "@vitejs/plugin-react"; import react from '@vitejs/plugin-react';
// https://vite.dev/config/ // https://vite.dev/config/
export default defineConfig({ export default defineConfig({
plugins: [ plugins: [
react({ react({
babel: { babel: {
plugins: [["babel-plugin-react-compiler"]], plugins: [['babel-plugin-react-compiler']],
}, },
}), }),
], ],