Skip to content

Commit 835588e

Browse files
committed
Bug fixes, vercel config update, added sharp lib, etc.
1 parent ff05601 commit 835588e

File tree

6 files changed

+13
-10
lines changed

6 files changed

+13
-10
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
dist/
44
# generated types
55
.astro/
6-
6+
.dist/
7+
.vercel/
78
# dependencies
89
node_modules/
910

package-lock.json

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ov-template",
33
"type": "module",
4-
"version": "0.8.0",
4+
"version": "0.8.2",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/vratskyi/vratskyi.github.io"
@@ -23,7 +23,8 @@
2323
"astro-compress": "^2.2.10",
2424
"atropos": "^2.0.2",
2525
"autoprefixer": "^10.4.17",
26-
"cssnano": "^6.0.3"
26+
"cssnano": "^6.0.3",
27+
"sharp": "^0.33.2"
2728
},
2829
"description": "``` npm create astro@latest -- --template minimal ```",
2930
"main": "index.js",

public/styles/global.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/pages/en/404.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
import { Image } from "astro:assets";
33
import blur from "@/assets/img/bg.png";
4-
import Layout from "@/layouts/Layout.astro";
5-
import Head from "@/components/Head.astro";
4+
import Layout from "@layouts/Layout.astro";
5+
import Head from "@components/Head.astro";
66
import { getAbsoluteLocaleUrl } from "astro:i18n";
77
88
getAbsoluteLocaleUrl("en");

src/pages/ru/404.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
import { Image } from "astro:assets";
3-
import blur from "@assets/img/bg.png";
4-
import Layout from "@/layouts/Layout.astro";
5-
import Head from "@/components/Head.astro";
3+
import blur from "@/assets/img/bg.png";
4+
import Layout from "@layouts/Layout.astro";
5+
import Head from "@components/Head.astro";
66
import { getAbsoluteLocaleUrl } from "astro:i18n";
77
88
getAbsoluteLocaleUrl("ru");

0 commit comments

Comments
 (0)