How to make the homepage the blog? #172
Replies: 3 comments 3 replies
-
Hello @blazestudios23 To do this just delete the home page that comes with AstroWind index.astro (or rename it) and then go to the AstroWind configuration and in the blog / list settings instead of "blog" change it to "" Ex: const CONFIG = {
// ..
blog: {
// ..
list: {
pathname: '', // -> This
noindex: false,
disabled: false,
},
// ..
},
}; |
Beta Was this translation helpful? Give feedback.
-
This configuration changes works on local builds, but fails on gitlab pages. On gitlab pages when deployed with official workflow, the blog list home page is not loaded as homepage, instead the default astrowind landing-page is loaded as homepage |
Beta Was this translation helpful? Give feedback.
-
Hi @fullStackDataSolutions and @abhinavkakku Example of AstroWind in github pages: Steps:
|
Beta Was this translation helpful? Give feedback.
-
I'm new to Astro but I've been Next for a long time.
How do I make the blog use the homepage "/" as it's default page?
I tried to add that in the settings, but it still showed whatever I had on the index page.
Beta Was this translation helpful? Give feedback.
All reactions