Recipes
Change the theme
Learn how to change the theme of your blog.
To start a new blog with Bloggrify, you can start from a theme to start with.
By default, if you follow the installation guide, you will start with the "Minimalist" theme.
You can choose to install another theme like "Mistral", "Bento", or "Epoxia", or you can also look at the other templates available.
- Once you have chosen a template, you have to include it in your project.
Example with the Mistral theme:
npm install @bloggrify/mistral
yarn add @bloggrify/mistral
pnpm add @bloggrify/mistral
Then you have to explicitly say to Nuxt that you are using Bloggrify as an extended module. You can do this by adding the following line in your nuxt.config.js file:
extends: [
'@bloggrify/core',
'@bloggrify/mistral',
],
- Next, you have to specify the theme in the
app/app.config.tsfile:
theme: 'mistral',
- Run the
devcommand to start Bloggrify in development mode:
npm run dev
yarn dev
pnpm run dev
✨ Well done! A browser window should automatically open for http://localhost:3000
Advanced method, start from scratch
Alternatively, you can start from scratch and create your own theme. To do so, follow the theme creation guide to create your own theme.