Skip to content

Commit

Permalink
Upgrade to v3 (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
mandar1jn authored Aug 30, 2023
1 parent 6893961 commit b7cdf8a
Show file tree
Hide file tree
Showing 7 changed files with 536 additions and 808 deletions.
11 changes: 0 additions & 11 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,5 @@ export default defineConfig({
output: "static",
markdown: {
syntaxHighlight: false,
},
build: {
inlineStylesheets: "auto",
},
experimental: {
assets: true,
},
image: {
service: {
entrypoint: "astro/assets/services/sharp",
},
}
});
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
"check": "astro check"
},
"dependencies": {
"@astrojs/rss": "^2.4.3",
"@astrojs/sitemap": "^1.3.1",
"@astrojs/tailwind": "^3.1.3",
"@astrojs/rss": "^3.0.0",
"@astrojs/sitemap": "^3.0.0",
"@astrojs/tailwind": "^5.0.0",
"@types/aes-js": "^3.1.1",
"@webgpu/types": "^0.1.32",
"aes-js": "^3.1.2",
"astro": "^2.6.0",
"astro": "^3.0.1",
"codemirror": "^6.0.1",
"date-fns": "^2.29.3",
"gl-matrix": "^3.4.3",
Expand Down
4 changes: 2 additions & 2 deletions src/components/NavBar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ import Section from "../components/Section.astro";
<a href="/">Home</a>
</li>
<li>
<a href="/projects/">Projects</a>
<a href="/projects">Projects</a>
</li>
<li >
<a href="/posts/">Posts</a>
<a href="/posts">Posts</a>
</li>
<li>
<a href="https://github.com/mandar1jn" target="_blank">GitHub</a>
Expand Down
2 changes: 1 addition & 1 deletion src/env.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/// <reference types="astro/client-image" />
/// <reference types="astro/client" />
/// <reference path="../.astro/types.d.ts" />
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const lastProjects = sortedProjects.slice(0, 3);
Hello. I'm <span class="gradient">Marijn Kneppers</span>
</h1>
<p class="introduction">
I'm an enthousiastic 16 year old developer living in the Netherlands.
I'm an enthousiastic 17 year old developer living in the Netherlands.
</p>
<div id="icons">
<a href="https://www.linkedin.com/in/marijn-kneppers/" target="_blank">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/rss.xml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const posts = await getCollection('blog', ({ data }) => {
return true;
});

export const get = () => rss({
export const GET = () => rss({
// `<title>` field in output xml
title: 'Marijn Kneppers\' Blog',
// `<description>` field in output xml
Expand Down
Loading

0 comments on commit b7cdf8a

Please sign in to comment.