Learn Vue JS course Learn Javascript and Vue JS Learn VueJS course Learn VueJS Tutorial

Authoring Nuxt Layers: Build a Custom Email Layer

Publishing Nuxt Layers thumbnail image

Get access to the most comprehensive Vue.js video library in the world. Over 300 video lessons including the newest Vue 3 features.

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