diff --git a/.github/workflows/ci-dev.yml b/.github/workflows/ci-dev.yml index 2b5e7c27..e05f1f70 100644 --- a/.github/workflows/ci-dev.yml +++ b/.github/workflows/ci-dev.yml @@ -21,6 +21,9 @@ jobs: os: [ubuntu-latest] # macos-latest, windows-latest node: [18] + env: + NUXT_GITHUB_TOKEN: ${{ secrets.NUXT_GITHUB_TOKEN }} + steps: - uses: actions/setup-node@v4 with: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 357cfa5f..1de84d18 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,9 @@ jobs: os: [ubuntu-latest] # macos-latest, windows-latest node: [18] + env: + NUXT_GITHUB_TOKEN: ${{ secrets.NUXT_GITHUB_TOKEN }} + steps: - uses: actions/setup-node@v4 with: diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..50aead73 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "prettier.enable": false +} diff --git a/docs/.env.example b/docs/.env.example index b0342bcc..8856c6ef 100644 --- a/docs/.env.example +++ b/docs/.env.example @@ -1,6 +1,8 @@ -# To link Nuxt UI Pro in development +# Specify the path of @nuxt/ui-pro locally NUXT_UI_PRO_PATH= -# To use Nuxt UI Pro in production -NUXT_UI_PRO_TOKEN= +# Production token for @nuxt/ui-pro, purchase on https://ui.nuxt.com/pro/purchase +NUXT_UI_PRO_LICENSE= # Used when pre-rendering the docs for dynamic OG images NUXT_PUBLIC_SITE_URL= +# Used to fetch `nuxt/ui-pro` docs content +NUXT_GITHUB_TOKEN= diff --git a/docs/app.vue b/docs/app.vue index 67802987..759f07df 100644 --- a/docs/app.vue +++ b/docs/app.vue @@ -1,16 +1,16 @@