Authoring Nuxt Layers: Build a Custom Email Layer
Plans from $25/month

This lesson is for members. Join us?

Subscribe now to get instant access to this course, plus a full library of Vue.js courses tailored to the plan you choose.

Publishing Nuxt Layers

In this lesson, learn how to distribute Nuxt layers via Github or npm or easy installation across multiple Nuxt projects.

export default defineNuxtConfig({
  extends: [
    '../base',                     // Extend from a local layer
    '@my-themes/awesome',          // Extend from an installed npm package
    'github:my-themes/awesome#v1', // Extend from a git repository
  ]
})

Links