Getting Started

Installation

Installation of the Nuxt Shopify module

This guide will walk you through the installation and initial configuration of the Nuxt Shopify module.

Click here if you need help setting up Shopify. You can start building without a store using mock.shop but you won't have access to real data.

Installation

Add the module to your app

npx nuxi@latest add nuxt-shopify

Configure the module

nuxt.config.ts
export default defineNuxtConfig({
  shopify: {
    name: 'quickstart-abcd1234',

    clients: {
      storefront: {
        apiVersion: '2025-07',
        publicAccessToken: 'YOUR_ACCESS_TOKEN',
      },
    },
  }
})

And that's it! You can now start using Nuxt Shopify.

The full module configuration reference can be found here.

Next Steps