feat: Chore: Update AIK and add ViewTransition support #13

Merged
create-issue-branch[bot] merged 6 commits from issue-12-Chore_Update_AIK into main 2024-03-12 22:15:03 +00:00
2 changed files with 6 additions and 0 deletions
Showing only changes of commit 1c22203db8 - Show all commits

View File

@ -0,0 +1,5 @@
---
"@matthiesenxyz/astro-hashnode": patch
---
This updates internal `AIK` as well as impliments ViewTransitions with a disable switch in the user config

View File

@ -54,6 +54,7 @@ export default defineConfig({
astroHashnode({ astroHashnode({
hashnodeURL: 'astroplayground.hashnode.dev', // Your hashnode URL hashnodeURL: 'astroplayground.hashnode.dev', // Your hashnode URL
landingPage: true, // Lets you disable the default landing page! landingPage: true, // Lets you disable the default landing page!
disableViewTransitions: false, // Lets you disable the Default included ViewTransitions.
layoutComponent: './src/layouts/YourLayout.astro' // Lets you change the default Layout.astro being used by the Integration Pages. layoutComponent: './src/layouts/YourLayout.astro' // Lets you change the default Layout.astro being used by the Integration Pages.
verbose: false // Change to Verbose console output verbose: false // Change to Verbose console output
}) })