fix short story missing
This commit is contained in:
@@ -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{' '}
|
||||
<OutsideLink href='https://bellettrie.utwente.nl'>Bellettrie</OutsideLink>, the
|
||||
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>
|
||||
</Fragment>
|
||||
);
|
||||
|
||||
@@ -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']],
|
||||
},
|
||||
}),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user