Skip to content

Commit

Permalink
Bug fixes, vercel config update, added sharp lib, etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
vratskyi committed Feb 29, 2024
1 parent ff05601 commit 835588e
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
dist/
# generated types
.astro/

.dist/
.vercel/
# dependencies
node_modules/

Expand Down
3 changes: 2 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ov-template",
"type": "module",
"version": "0.8.0",
"version": "0.8.2",
"repository": {
"type": "git",
"url": "https://github.com/vratskyi/vratskyi.github.io"
Expand All @@ -23,7 +23,8 @@
"astro-compress": "^2.2.10",
"atropos": "^2.0.2",
"autoprefixer": "^10.4.17",
"cssnano": "^6.0.3"
"cssnano": "^6.0.3",
"sharp": "^0.33.2"
},
"description": "``` npm create astro@latest -- --template minimal ```",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion public/styles/global.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/pages/en/404.astro
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
import { Image } from "astro:assets";
import blur from "@/assets/img/bg.png";
import Layout from "@/layouts/Layout.astro";
import Head from "@/components/Head.astro";
import Layout from "@layouts/Layout.astro";
import Head from "@components/Head.astro";
import { getAbsoluteLocaleUrl } from "astro:i18n";
getAbsoluteLocaleUrl("en");
Expand Down
6 changes: 3 additions & 3 deletions src/pages/ru/404.astro
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
import { Image } from "astro:assets";
import blur from "@assets/img/bg.png";
import Layout from "@/layouts/Layout.astro";
import Head from "@/components/Head.astro";
import blur from "@/assets/img/bg.png";
import Layout from "@layouts/Layout.astro";
import Head from "@components/Head.astro";
import { getAbsoluteLocaleUrl } from "astro:i18n";
getAbsoluteLocaleUrl("ru");
Expand Down

0 comments on commit 835588e

Please sign in to comment.