Install Prismic
This article explains how to install and configure Prismic in a Nuxt project (version 3 or later). By the end of this page, you will have Prismic utilities installed in your app.
To start with a preconfigured project, go to prismic.io/dashboard and select Nuxt.
This guide does not assume any prior knowledge of Vue and Nuxt, but a basic understanding would be helpful. For an introduction, see the documentation for Vue and Nuxt.
Before proceeding, you will need a Nuxt project. You can quickly create a brand new project using the following nuxi
command. (Read the official documentation to learn more):
npx nuxi@latest init <project-name>
Then open your project:
cd <project-name>
Install dependencies:
npm install
Once it's finished, you'll have a brand new Nuxt project where you can install Slice Machine.
npx @slicemachine/init@latest
What does this command do?
This command prompts you to create or connect to a Prismic repo. Then it does the following:
- Adds a
slicemachine
script to thepackage.json
. - Creates a
slicemachine.config.json
file for your Slice Machine project, containing the repository name and the slice library location. - Detects the application framework to add required packages.
- Creates a
pages/slice-simulator.vue
file to simulate slices in development. - Configures the Prismic integration in
nuxt.config.js
.
What packages does the command add?
@nuxtjs/prismic
, which injects helpers for fetching and templating Prismic content@slicemachine/adapter-nuxt
, which adapts Slice Machine to Nuxt.slice-machine-ui
, a local development environment for building slices
The init command creates a pages/slice-simulator.vue
file for the slice simulator. The slice simulator acts as a local development environment for your slices.
To finish setting up the slice simulator, update the slicemachine.config.json
file at the root of your project to add the localSliceSimulatorURL
property:
{
"repositoryName": "example-prismic-repo",
"libraries": ["@/slices"],
"localSliceSimulatorURL": "http://localhost:3000/slice-simulator"
}
The URL should reflect the URL of your development server.
Your Page Builder is accessible from prismic.io/dashboard. It's the hosted part of your application, where your content lives.
In your Page Builder, go to Settings > Previews. Here, you can configure a preview environment for each environment that runs your application, like localhost, staging, and production.
In the Domain field, enter the root URL for the environment, like http://localhost:3000
or https://example.com
.
In the Preview Route field, enter /preview
(unless you have changed this route to something else in your nuxt.config.js
).
What is previewing?
Previews are one of Prismic's most powerful features. Previewing gives content editors the ability to view content without publishing it to a live site.
Can't find what you're looking for?
Need technical Support? Spot an error in the documentation? Get in touch with us on our Community Forum.