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

This lesson is for members. Join us?

Subscribe now and get immediate access to this course, 30 more and all future Vue.js courses!

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