Nuxt 3 Layers and Azure DevOps repositories

58 views Asked by At

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.

1

There are 1 answers

2
wade zhou - MSFT On BEST ANSWER

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