Create the API composable
Createcomposables/useThestacc.ts:
Add runtime config
In yournuxt.config.ts:
thestaccApiKey outside the public block means it stays server-side and never ships to the browser.
Create the blog listing page
Createpages/blog/index.vue:
Create the blog detail page
Createpages/blog/[slug].vue:
v-html renders the HTML content directly. Style the .blog-content class in your CSS to match your site’s design.
