Nuxt
This guide will walk you through how to integrate Decap CMS with Nuxt.
Starting With create-nuxt-app
Follow the instructions on the Nuxt documentation for creating a new project, or run:
npx create-nuxt-app <name-of-your-new-project>
cd <name-of-your-new-project>
npm run dev
Setting Up Decap CMS
Add the Decap CMS files to Nuxt
For nuxt 3 apps and above use the `public/` folder instead of `/static` which is for nuxt 2.
In the static/
directory, create a new directory admin/
. Inside that directory you'll create two files, your index.html
and a config.yml
. Per the Decap CMS documentation, we'll set the content of static/admin/index.html
to the following:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Content Manager</title>
<!-- Include the script that enables Netlify Identity on this page. -->
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
</head>
<body>
<!-- Include the script that builds the page and powers Decap CMS -->
<script src="https://unpkg.com/decap-cms@^3.0.0/dist/decap-cms.js"></script>
</body>
</html>
For your static/admin/config.yml
file, you can put in a basic starter config:
backend:
name: git-gateway
branch: main # Branch to update (optional; defaults to master)
media_folder: static/img
public_folder: /img
collections:
- name: 'blog'
label: 'Blog'
folder: 'content/blog'
format: 'frontmatter'
create: true
slug: '{{year}}-{{month}}-{{day}}-{{slug}}'
editor:
preview: false
fields:
- { label: 'Title', name: 'title', widget: 'string' }
- { label: 'Publish Date', name: 'date', widget: 'datetime' }
- { label: 'Description', name: 'description', widget: 'string' }
- { label: 'Body', name: 'body', widget: 'markdown' }
You can build whatever collections and content modeling you want. The important thing to note is the format: 'frontmatter'
value on each collection. This is important for consuming content in Nuxt with the nuxt/content module.
Add the content/
directory to Nuxt
In your root directory, you can create a new directory content/
. As you might guess, this is where our content will live. Your filesystem should look about like this, so far:
root/
├ content/
├ components/
├ layouts/
├ middleware/
├ pages/
├ plugins/
├ static/
│ └ admin/
│ ├ index.html
│ └ config.yml
├ store/
└ // .editorconfig, .gitignore, nuxt.config.js, etc...
Pushing to GitHub
It's now time to commit your changes and push to GitHub. create-nuxt-app
initializes Git automatically for you, so you only need to do:
git add .
git commit -m "Initial Commit"
git remote add origin https://github.com/YOUR_USERNAME/NEW_REPO_NAME.git
git push -u origin main
Deploying With Netlify
Now you can go ahead and deploy to Netlify. Go to your Netlify dashboard and click New site from Git. Select the repo you just created. Under Basic build settings, you can set the build command to npm run generate
. Set the publish directory to dist
. Click Deploy site to get the process going.
Authenticating with Netlify Identity
Add the Netlify Identity Widget
You've already added the Netlify Identity widget to our admin/index.html
. The next thing to do is add the Netlify Identity widget to our site's index page. In pages/index.vue
, we can add the following to the page <script>
tag:
Nuxt 2 apps:
export default {
head() {
return {
script: [{ src: 'https://identity.netlify.com/v1/netlify-identity-widget.js' }],
};
},
};
Nuxt 3 apps:
<script setup>
useHead({
script: [
{ src: "https://identity.netlify.com/v1/netlify-identity-widget.js" },
],
});
</script>
Once you've added this, make sure to push your changes to GitHub!
More on adding <script>
tags to <head>
here.
Enable Identity & Git Gateway in Netlify
Back in your Netlify dashboard:
- Go to Settings > Identity, and select Enable Identity service.
- Once enabled, select Settings and usage, and scroll down to Registration preferences. You can set this to either Open or Invite only, but usually Invite only is your best bet for a personal site.
- If you don't want to create an account, or would like to use an external provider such as GitHub or Google, you can enable those services under External providers.
- Scroll down to Services and click Enable Git Gateway.
Accessing the CMS
Once you've reached this point, you should be able to access the CMS in your browser at http://localhost:3000/admin
. You'll be prompted to add the URL of your Netlify site. Once you've added that URL, you can log in with an Identity account or with one of the External Providers you enabled in step 3 above. For the sake of this tutorial, you can create a blog post in the CMS, and publish it! Once you git pull
in your project, the blog post will show up in the project at content/blog/<slugified-blog-post-title>.md
.
Using nuxt/content
Decap CMS and nuxt/content module click together and complement each other to give you best authoring experience and developer experience respectively.
Adding nuxt/content dependency
yarn add @nuxt/content
or
npm i @nuxt/content
Then, add @nuxt/content to the modules section of nuxt.config.js:
{
modules: [
'@nuxt/content'
],
content: {
// Options
}
}
By adding nuxt content module you get $content
injected into your whole app which you can use to fetch content from your content folder using simple fetch api
or nuxt asyncData
option.
This also gives a <nuxt-content>
component which helps you display markdown content with ease and also gives option of live editing in dev mode.
Example Blog Post List
nuxt/content
module gives us $content
which we can use to fetch the list of blog posts in content/blog
directory.
<template>
<div>
<li v-for="post of posts" :key="post.slug">
<NuxtLink :to="post.slug">{{ post.title }}</NuxtLink>
</li>
</div>
</template>
<script>
export default {
async asyncData({ $content }) {
const posts = await $content("blog").fetch();
return {
posts,
};
},
};
</script>
Example Blog Post
To generate blog posts create a _slug.vue
file in the pages folder. By using $content
you would get a json which you can use to display. But if you are using markdown
to write and store your posts you can use <nuxt-content>
module which gives you option to edit content on page in dev mode and many more features.
<template>
<div>
<h2>{{ post.title }}</h2>
<nuxt-content :document="post" />
</div>
</template>
<script>
export default {
async asyncData({ $content, params, error }) {
let post;
try {
post = await $content("blog", params.slug).fetch();
// OR const article = await $content(`articles/${params.slug}`).fetch()
} catch (e) {
error({ message: "Blog Post not found" });
}
return {
post,
};
},
};
</script>
Generating pages with the generate
property
Since Nuxt 2.13+, nuxt export has a crawler feature integrated which will crawl all your links and generate your routes based on those links. Therefore you do not need to do anything in order for your dynamic routes to be crawled. i.e, if you are on version of nuxt above 2.14 add target as static in nuxt.config.js and use nuxt generate
to build your static site.
// nuxt.config.js
target: 'static'
If you are using nuxt version below 2.14 you have to use generate option in nuxt/content module to generate pages
//nuxt.config.js
export default {
modules: [,
'@nuxt/content'
],
generate: {
async routes () {
const { $content } = require('@nuxt/content')
const files = await $content().only(['path']).fetch()
return files.map(file => file.path === '/index' ? '/' : file.path)
}
}
}
To render your site as a static site, you'll need to create or update the generate
property in nuxt.config.js
to create dynamic routes and provide their content as a payload
. In generate
, make your routes
entry a function:
export default {
generate: {
routes: function() {
const fs = require('fs');
const path = require('path');
return fs.readdirSync('./content/blog').map(file => {
return {
route: `/blog/${path.parse(file).name}`, // Return the slug
payload: require(`./content/blog/${file}`),
};
});
},
},
};
To see the generated site, navigate to name-of-your-website.netlify.app/blog