Skip to content

Commit

Permalink
Merge pull request #18 from LyonSyonII/dev
Browse files Browse the repository at this point in the history
Multiple SEO and Accessibility fixes; Added three exercises to 4th mission
  • Loading branch information
LyonSyonII authored Dec 17, 2023
2 parents b4ef301 + da8a60b commit a5c1e81
Show file tree
Hide file tree
Showing 14 changed files with 4,006 additions and 1,557 deletions.
16 changes: 9 additions & 7 deletions frontend/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { visualizer } from "rollup-plugin-visualizer";
import compress from "astro-compress";
import robotsTxt from "astro-robots-txt";
import webmanifest from "astro-webmanifest";
import compressor from "astro-compressor";

// https://astro.build/config
export default defineConfig({
Expand Down Expand Up @@ -50,15 +51,16 @@ export default defineConfig({
// TODO: Does not work at the moment
// https://github.com/alextim/astro-lib/tree/main/packages/astro-webmanifest
/* webmanifest({
name: "Rust Quest",
icon: "src/assets/ferris.svg",
short_name: "Rust Quest",
description: "Learn programming in a new way!",
start_url: "/",
display: "standalone"
}), */
name: "Rust Quest",
icon: "src/assets/ferris.svg",
short_name: "Rust Quest",
description: "Learn programming in a new way!",
start_url: "/",
display: "standalone"
}), */
compress(),
robotsTxt(),
compressor(),
],
vite: {
plugins: [visualizer()],
Expand Down
1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"@codemirror/state": "^6.3.3",
"@codemirror/view": "^6.22.3",
"@lezer/highlight": "^1.2.0",
"astro-compressor": "^0.4.1",
"confettis": "^0.3.0"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit a5c1e81

Please sign in to comment.