feat: add base path
This commit is contained in:
parent
c67bab514b
commit
5da44976cd
|
@ -2,5 +2,7 @@ import { defineConfig } from "astro/config";
|
||||||
|
|
||||||
// https://astro.build/config
|
// https://astro.build/config
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
|
site: "https://log101.dev",
|
||||||
|
base: "/blog",
|
||||||
integrations: [],
|
integrations: [],
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
---
|
---
|
||||||
console.log(import.meta.env.DEV);
|
const base = import.meta.env.BASE_URL;
|
||||||
|
|
||||||
const host = import.meta.env.HOST_NAME;
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
@ -89,7 +87,7 @@ const host = import.meta.env.HOST_NAME;
|
||||||
|
|
||||||
<div class="title-and-nav">
|
<div class="title-and-nav">
|
||||||
<div class="title-and-gol">
|
<div class="title-and-gol">
|
||||||
<a href={host}><h1 class="main-title">log101</h1></a>
|
<a href={base}><h1 class="main-title">log101</h1></a>
|
||||||
<div id="board" class="board"></div>
|
<div id="board" class="board"></div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
|
@ -98,16 +96,16 @@ const host = import.meta.env.HOST_NAME;
|
||||||
(
|
(
|
||||||
<>
|
<>
|
||||||
<li>
|
<li>
|
||||||
<a href={`/category/fikir`}>Fikir</a>
|
<a href={`${base}/category/fikir`}>Fikir</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href={`/category/teknik`}>Teknik</a>
|
<a href={`${base}/category/teknik`}>Teknik</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href={`/category/edebiyat`}>Babür'ün Serüvenleri</a>
|
<a href={`${base}/category/edebiyat`}>Babür'ün Serüvenleri</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href={`/category/ansiklopedi`}>Ansiklopedi</a>
|
<a href={`${base}/category/ansiklopedi`}>Ansiklopedi</a>
|
||||||
</li>
|
</li>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
|
|
|
@ -33,7 +33,9 @@ const postDateFormatted = post.data.date.toLocaleDateString("tr-TR", {
|
||||||
year: "numeric",
|
year: "numeric",
|
||||||
});
|
});
|
||||||
|
|
||||||
const postLink = `/category/${post.data.category}/${post.slug}`;
|
const base = import.meta.env.BASE_URL;
|
||||||
|
|
||||||
|
const postLink = `${base}/category/${post.data.category}/${post.slug}`;
|
||||||
|
|
||||||
const { Content } = await post.render();
|
const { Content } = await post.render();
|
||||||
---
|
---
|
||||||
|
@ -178,7 +180,7 @@ const { Content } = await post.render();
|
||||||
{post.body.length > 500 && (
|
{post.body.length > 500 && (
|
||||||
<a
|
<a
|
||||||
class="read-more"
|
class="read-more"
|
||||||
href={`/category/${post.data.category}/${post.slug}`}
|
href={`${base}/category/${post.data.category}/${post.slug}`}
|
||||||
>
|
>
|
||||||
Devamını Oku
|
Devamını Oku
|
||||||
</a>
|
</a>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user