Skip to content

Commit

Permalink
docs: Fix dead links
Browse files Browse the repository at this point in the history
  • Loading branch information
trandaison committed Apr 1, 2024
1 parent 875f457 commit 6828769
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 95 deletions.
3 changes: 3 additions & 0 deletions build.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@ import { defineBuildConfig } from "unbuild";

export default defineBuildConfig({
externals: ["#imports", "#app"],
rollup: {
inlineDependencies: true,
},
});
4 changes: 2 additions & 2 deletions docs/guide/http-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ await auth.$fetch('/api/me', {

`auth` option allow theses values:

| Value | Description | Attach Access Token | Refresh access token | Retry request |
| Value | Attach Access Token | Refresh access token | Retry request | Description |
| --- | --- | --- | --- | --- |
| **`'auto'`** |||| Make authenticated request if possible but doesn't refresh access token when token expires |
| `true` |||| Make authenticated request and refresh token then retry if the response status is `401` |
Expand All @@ -29,5 +29,5 @@ await auth.$fetch('/api/me', {
:::tip
By default, the [useGlobalFetch](/api/options.html#useglobalfetch) option is set to `true`, so the global `$fetch` is overridden by `$auth.$fetch`.

In case you want to use the default Nuxt `$fetch`, set `useGlobalFetch: false` in the [options](/options).
In case you want to use the default Nuxt `$fetch`, set `useGlobalFetch: false` in the [options](/api/options#useglobalfetch).
:::
4 changes: 2 additions & 2 deletions docs/vi/guide/http-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ await auth.$fetch('/api/me', {

Tùy chọn `auth` cho phép các giá trị sau:

| Giá trị | Mô tả | Đính kèm Access Token | Làm mới access token | Thử lại request |
| Giá trị | Đính kèm Access Token | Làm mới access token | Thử lại request | Mô tả |
| --- | --- | --- | --- | --- |
| **`'auto'`** |||| Thực hiện request xác thực nếu có thể nhưng không làm mới access token khi token hết hạn |
| `true` |||| Thực hiện request xác thực và làm mới token sau đó thử lại nếu trạng thái phản hồi là `401` |
Expand All @@ -29,5 +29,5 @@ Tùy chọn `auth` cho phép các giá trị sau:
::: tip
Mặc định, option [useGlobalFetch](/vi/api/options.html#useglobalfetch) được thiết lập là `true`, do đó global `$fetch` được override bởi `$auth.$fetch`.

Trong trường hợp bạn muốn sử dụng `$fetch` mặc định của Nuxt, hãy thiết lập `useGlobalFetch: false` trong [options](/options).
Trong trường hợp bạn muốn sử dụng `$fetch` mặc định của Nuxt, hãy thiết lập `useGlobalFetch: false` trong [options](/vi/api/options#useGlobalFetch).
:::
Loading

0 comments on commit 6828769

Please sign in to comment.