Skip to content

Commit 6ef5369

Browse files
authored
docs(many): update config links (#2846)
1 parent 69366b1 commit 6ef5369

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

docs/api/back-button.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import Basic from '@site/static/usage/v7/back-button/basic/index.md';
2828

2929
## Custom Back Button
3030

31-
By default, the back button will display the text `"Back"` with a `"chevron-back"` icon on `ios`, and an `"arrow-back-sharp"` icon on `md`. This can be customized per back button component by setting the `icon` or `text` properties. Alternatively, it can be set globally using the `backButtonIcon` or `backButtonText` properties in the global config. See the Config docs for [Angular](/docs/angular/config), [React](/docs/react/config), or [Vue](/docs/vue/config) for more information.
31+
By default, the back button will display the text `"Back"` with a `"chevron-back"` icon on `ios`, and an `"arrow-back-sharp"` icon on `md`. This can be customized per back button component by setting the `icon` or `text` properties. Alternatively, it can be set globally using the `backButtonIcon` or `backButtonText` properties in the global config. See the [Config docs](../developing/config) for more information.
3232

3333
import Custom from '@site/static/usage/v7/back-button/custom/index.md';
3434

versioned_docs/version-v6/angular/platform.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Below is a table listing all the possible platform values along with correspondi
6363

6464
#### Customizing Platform Detection Functions
6565

66-
The function used to detect a specific platform can be overridden by providing an alternative function in the global [Ionic config](./config). Each function takes `window` as a parameter and returns a boolean.
66+
The function used to detect a specific platform can be overridden by providing an alternative function in the global [Ionic config](../developing/config). Each function takes `window` as a parameter and returns a boolean.
6767

6868
```tsx
6969
import { IonicModule } from '@ionic/angular';

versioned_docs/version-v6/api/back-button.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import Basic from '@site/static/usage/v6/back-button/basic/index.md';
2828

2929
## Custom Back Button
3030

31-
By default, the back button will display the text `"Back"` with a `"chevron-back"` icon on `ios`, and an `"arrow-back-sharp"` icon on `md`. This can be customized per back button component by setting the `icon` or `text` properties. Alternatively, it can be set globally using the `backButtonIcon` or `backButtonText` properties in the global config. See the Config docs for [Angular](/docs/angular/config), [React](/docs/react/config), or [Vue](/docs/vue/config) for more information.
31+
By default, the back button will display the text `"Back"` with a `"chevron-back"` icon on `ios`, and an `"arrow-back-sharp"` icon on `md`. This can be customized per back button component by setting the `icon` or `text` properties. Alternatively, it can be set globally using the `backButtonIcon` or `backButtonText` properties in the global config. See the [Config docs](../developing/config) for more information.
3232

3333
import Custom from '@site/static/usage/v6/back-button/custom/index.md';
3434

versioned_docs/version-v6/intro/upgrading-to-ionic-6.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you are using Ionic Angular Server, be sure to update that as well:
1919
npm install @ionic/angular@6 @ionic/angular-server@6
2020
```
2121

22-
3. Remove any usage of `Config.set()`. Instead, set your config in `IonicModule.forRoot()`. See the [Angular Config Documentation](../angular/config) for more examples.
22+
3. Remove any usage of `Config.set()`. Instead, set your config in `IonicModule.forRoot()`. See the [Config Documentation](../developing/config) for more examples.
2323
4. Remove any usage of the `setupConfig` function previously exported from `@ionic/angular`. Set your config in `IonicModule.forRoot()` instead.
2424

2525
### React
@@ -73,7 +73,7 @@ setupIonicReact({
7373
Developers must import and call `setupIonicReact` even if they are not setting custom config.
7474
:::
7575

76-
See the [React Config Documentation](../react/config) for more examples.
76+
See the [Config Documentation](../developing/config) for more examples.
7777

7878
5. Update all controller imports from `@ionic/core` to `@ionic/core/components`. As an example, here is a migration for `menuController`:
7979

@@ -133,7 +133,7 @@ module.exports = {
133133

134134
See the [Testing section below](#testing) for more information.
135135

136-
5. Remove any usage of the `setupConfig` function previously exported from `@ionic/vue`. Set your config when installing the `IonicVue` plugin instead. See the [Vue Config Documentation](../vue/config) for more examples.
136+
5. Remove any usage of the `setupConfig` function previously exported from `@ionic/vue`. Set your config when installing the `IonicVue` plugin instead. See the [Config Documentation](../developing/config) for more examples.
137137

138138
6. Rename the `IonRouter` type for `useIonRouter` to `UseIonRouterResult`.
139139

versioned_docs/version-v6/react/platform.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Below is a table listing all the possible platform values along with correspondi
4747

4848
## Customizing Platform Detection Functions
4949

50-
The function used to detect a specific platform can be overridden by providing an alternative function in the global [Ionic config](./config). Each function takes `window` as a parameter and returns a boolean.
50+
The function used to detect a specific platform can be overridden by providing an alternative function in the global [Ionic config](../developing/config). Each function takes `window` as a parameter and returns a boolean.
5151

5252
```tsx
5353
setupIonicReact({

versioned_docs/version-v6/theming/platform-styles.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Ionic provides platform specific styles based on the device the application is r
1414

1515
## Ionic Modes
1616

17-
Ionic uses **modes** to customize the look of components. Each **platform** has a default **mode**, but this can be overridden through the global [config](../angular/config.md). The following chart displays the default **mode** that is added to each **platform**:
17+
Ionic uses **modes** to customize the look of components. Each **platform** has a default **mode**, but this can be overridden through the global [config](../developing/config.md). The following chart displays the default **mode** that is added to each **platform**:
1818

1919
| Platform | Mode | Description |
2020
| --------- | ----- | -------------------------------------------------------------------------------------------------------------------------------- |
@@ -28,7 +28,7 @@ For example, an app being viewed on an Android platform will use the `md` (Mater
2828
<html class="md"></html>
2929
```
3030

31-
_Note: The **platform** and the **mode** are not the same. The platform can be set to use any mode in the [config](../angular/config.md) of an app._
31+
_Note: The **platform** and the **mode** are not the same. The platform can be set to use any mode in the [config](../developing/config.md) of an app._
3232

3333
## Overriding Mode Styles
3434

versioned_docs/version-v6/vue/platform.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Below is a table listing all the possible platform values along with correspondi
4747

4848
## Customizing Platform Detection Functions
4949

50-
The function used to detect a specific platform can be overridden by providing an alternative function in the global [Ionic config](./config). Each function takes `window` as a parameter and returns a boolean.
50+
The function used to detect a specific platform can be overridden by providing an alternative function in the global [Ionic config](../developing/config). Each function takes `window` as a parameter and returns a boolean.
5151

5252
```tsx
5353
createApp(App).use(IonicVue, {

0 commit comments

Comments
 (0)