Skip to content

Commit

Permalink
Merge pull request #51 from RiccardoZaffalon/develop
Browse files Browse the repository at this point in the history
Update site design
  • Loading branch information
RiccardoZaffalon committed Jul 20, 2023
2 parents 8698a30 + 8363123 commit d830779
Show file tree
Hide file tree
Showing 18 changed files with 10,480 additions and 1,715 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,5 @@ build/**/*

# Parcel
.cache
.parcel-cache
.parcel-cache
.astro
22 changes: 22 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { defineConfig } from "astro/config";
import compress from "astro-compress";
import rehypeExternalLinks from "rehype-external-links";

// https://astro.build/config
export default defineConfig({
integrations: [
compress({
css: false,
}),
],
markdown: {
rehypePlugins: [
[
rehypeExternalLinks,
{
target: "_blank",
},
],
],
},
});
Loading

0 comments on commit d830779

Please sign in to comment.