azure-devopslayernuxt3.js

Nuxt 3 Layers and Azure DevOps repositories


Has anyone implemented Nuxt Layers using links to Azure DevOps Git repositories.

Trying to figure out if we even can yet, or if we can, what else is required like an auth token for private repos etc.


Solution

  • There is no direct link in Nuxt 3 layer to Azure DevOps repo. As per the link, it supports github, gitlab, bitbucket.

    enter image description here

    Tried with azure devops repo with two formats, it cannot extend the repo, it could be not supported.

    export default defineNuxtConfig({
      extends: [
        'azure-devops:org/project/_git/repo',
        'azure-devops:org/project',
      ]
    })
    

    enter image description here