Skip to content

Commit

Permalink
Fix base tag
Browse files Browse the repository at this point in the history
  • Loading branch information
fwextensions committed Apr 8, 2024
1 parent 1293431 commit 2746cce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layouts/Page.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const { title } = Astro.props;
<!doctype html>
<html lang="en">
<head>
<base href={import.meta.env.BASE_URL} />
<base href={import.meta.env.BASE_URL + "/"} />
<meta charset="UTF-8" />
<meta name="description" content="Astro description" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
Expand Down

0 comments on commit 2746cce

Please sign in to comment.