Skip to content

Commit

Permalink
fix: public path
Browse files Browse the repository at this point in the history
  • Loading branch information
kikinnicha committed Jan 12, 2024
1 parent 1340edc commit adeb9bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/signin.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import BaseLayout from "@/layouts/BaseLayout.astro";
import SignInBackground from "@/layouts/SignInBackground.astro";
import { Image } from "astro:assets";
import BarImage from "@/public/images/bar.png";
import BarImage from "#/images/bar.png";
---

<!-- TODO: Implement the logic for the Google OAuth -->
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@/public/*": ["public/*"]
"#/*": ["public/*"]
},
"jsx": "react-jsx",
"jsxImportSource": "react"
Expand Down

0 comments on commit adeb9bd

Please sign in to comment.