Change the theme
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 start with "Mistral" 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
npm install @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.config.ts
file:
theme: 'mistral',
- Run the
dev
command to start Bloggrify in development mode:
npm
npm 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.