Skip to content

Commit 3d49d0e

Browse files
abkaaarcursoragent
andcommitted
Use root base for abkaaar.github.io user site.
Remote serves at https://abkaaar.github.io/ so base must be / not /abkaaar/. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 1796ba7 commit 3d49d0e

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

NOTION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Repo → **Settings → Pages → Build and deployment → Source: GitHub Action
8686

8787
Push to `main` or run **Deploy to GitHub Pages** via **Actions → workflow_dispatch**.
8888

89-
Site URL: `https://abkaaar.github.io/abkaaar/`
89+
Site URL: `https://abkaaar.github.io/`
9090

9191
## 6. Seed existing projects
9292

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ npm run build
2525
npm run preview
2626
```
2727

28-
Configured for `https://abkaaar.github.io/abkaaar/` (`base: '/abkaaar'`). For a custom domain later, set `base: '/'` in `astro.config.mjs` and add a `CNAME` in `public/`.
28+
Configured for `https://abkaaar.github.io/` (`base: '/'`). The GitHub remote is `abkaaar/abkaaar.github.io`.
2929

3030
## Notion + deploy
3131

astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import { defineConfig } from 'astro/config';
22

33
export default defineConfig({
44
site: 'https://abkaaar.github.io',
5-
base: '/abkaaar/',
5+
base: '/',
66
output: 'static',
77
});

src/styles/global.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
font-family: 'Hk Grotesk';
77
font-style: normal;
88
font-weight: 400;
9-
src: url('/abkaaar/Fonts/HKGrotesk-Regular.woff') format('woff');
9+
src: url('/Fonts/HKGrotesk-Regular.woff') format('woff');
1010
}
1111

1212
@font-face {
1313
font-family: 'Jost';
1414
font-style: normal;
1515
font-weight: 400;
16-
src: url('/abkaaar/Fonts/Jost-Regular.ttf') format('truetype');
16+
src: url('/Fonts/Jost-Regular.ttf') format('truetype');
1717
}
1818

1919
* {
@@ -437,7 +437,7 @@ body:not(.user-is-tabbing) a:focus {
437437

438438
.header {
439439
background: linear-gradient(rgba(0,0,0, .1), rgba(0,0,0, .4)),
440-
url('/abkaaar/Images/header.jpg');
440+
url('/Images/header.jpg');
441441
height: 100vh;
442442
background-size: cover;
443443
background-position: center;

0 commit comments

Comments
 (0)