mirror of
https://github.com/strapi/strapi.git
synced 2025-09-01 12:53:03 +00:00
Fix multiple doc links (#6375)
This commit is contained in:
parent
123ce203e5
commit
d38b9d35b9
@ -55,7 +55,7 @@ The core team will review your pull request and will either merge it, request ch
|
||||
|
||||
To facilitate the contribution, we have drastically reduced the amount of commands necessary to install the entire development environment.
|
||||
|
||||
First of all, you need to check if you're using the [required versions of Node.js and npm](https://strapi.io/documentation/3.0.0-beta.x/getting-started/install-requirements.html)
|
||||
First of all, you need to check if you're using the [required versions of Node.js and npm](https://strapi.io/documentation/v3.x/installation/cli.html#step-1-make-sure-requirements-are-met)
|
||||
|
||||
Then, please follow the instructions below:
|
||||
|
||||
|
@ -60,7 +60,7 @@ Strapi is a free and open source headless CMS delivering your content anywhere y
|
||||
|
||||
## Getting Started
|
||||
|
||||
<a href="https://strapi.io/documentation/3.0.0-beta.x/getting-started/quick-start.html" target="_blank">Read the Getting Started tutorial</a> or follow the steps below:
|
||||
<a href="https://strapi.io/documentation/v3.x/getting-started/quick-start.html" target="_blank">Read the Getting Started tutorial</a> or follow the steps below:
|
||||
|
||||
### ⏳ Installation
|
||||
|
||||
@ -86,7 +86,7 @@ Enjoy 🎉
|
||||
|
||||
### 🖐 Requirements
|
||||
|
||||
Complete installation requirements can be found in the documentation under <a href="https://strapi.io/documentation/3.0.0-beta.x/getting-started/install-requirements.html">Installation Requirements</a>.
|
||||
Complete installation requirements can be found in the documentation under <a href="https://strapi.io/documentation/v3.x/installation/cli.html#step-1-make-sure-requirements-are-met">Installation Requirements</a>.
|
||||
|
||||
**Supported operating systems**:
|
||||
|
||||
@ -145,7 +145,7 @@ For general help using Strapi, please refer to [the official Strapi documentatio
|
||||
|
||||
## Migration
|
||||
|
||||
Follow our [migration guides](https://strapi.io/documentation/3.0.0-beta.x/migration-guide/) on the documentation to keep your projects up-to-date.
|
||||
Follow our [migration guides](https://strapi.io/documentation/v3.x/migration-guide/) on the documentation to keep your projects up-to-date.
|
||||
|
||||
## Roadmap
|
||||
|
||||
|
@ -17,7 +17,7 @@ function EmptyList() {
|
||||
<p>{formatMessage({ id: 'Settings.webhooks.list.empty.title' })}</p>
|
||||
<p>{formatMessage({ id: 'Settings.webhooks.list.empty.description' })}</p>
|
||||
<a
|
||||
href="https://strapi.io/documentation/3.0.0-beta.x/guides/webhooks.html"
|
||||
href="https://strapi.io/documentation/v3.x/concepts/webhooks.html"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
|
@ -18,7 +18,7 @@ import SocialLink from './SocialLink';
|
||||
const FIRST_BLOCK_LINKS = [
|
||||
{
|
||||
link:
|
||||
'https://strapi.io/documentation/3.0.0-beta.x/getting-started/quick-start.html#_4-create-a-new-content-type',
|
||||
'https://strapi.io/documentation/v3.x/getting-started/quick-start.html#_4-create-a-category-content-type',
|
||||
contentId: 'app.components.BlockLink.documentation.content',
|
||||
titleId: 'app.components.BlockLink.documentation',
|
||||
},
|
||||
|
@ -1,7 +1,7 @@
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* Read the documentation (https://strapi.io/documentation/3.0.0-beta.x/concepts/controllers.html#core-controllers)
|
||||
* Read the documentation (https://strapi.io/documentation/v3.x/concepts/controllers.html#core-controllers)
|
||||
* to customize this controller
|
||||
*/
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* Read the documentation (https://strapi.io/documentation/3.0.0-beta.x/concepts/models.html#life-cycle-callbacks)
|
||||
* Read the documentation (https://strapi.io/documentation/v3.x/concepts/models.html#life-cycle-callbacks)
|
||||
* to customize this model
|
||||
*/
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* Read the documentation (https://strapi.io/documentation/3.0.0-beta.x/concepts/services.html#core-services)
|
||||
* Read the documentation (https://strapi.io/documentation/v3.x/concepts/services.html#core-services)
|
||||
* to customize this service
|
||||
*/
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* Read the documentation (https://strapi.io/documentation/3.0.0-beta.x/concepts/models.html#life-cycle-callbacks)
|
||||
* Read the documentation (https://strapi.io/documentation/v3.x/concepts/models.html#lifecycle-hooks)
|
||||
* to customize this model
|
||||
*/
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
* This gives you an opportunity to set up your data model,
|
||||
* run jobs, or perform some special logic.
|
||||
*
|
||||
* See more details here: https://strapi.io/documentation/3.0.0-beta.x/concepts/configurations.html#bootstrap
|
||||
* See more details here: https://strapi.io/documentation/v3.x/concepts/configurations.html#bootstrap
|
||||
*/
|
||||
|
||||
module.exports = () => {};
|
||||
|
@ -7,7 +7,7 @@
|
||||
* The cron format consists of:
|
||||
* [SECOND (optional)] [MINUTE] [HOUR] [DAY OF MONTH] [MONTH OF YEAR] [DAY OF WEEK]
|
||||
*
|
||||
* See more details here: https://strapi.io/documentation/3.0.0-beta.x/concepts/configurations.html#cron-tasks
|
||||
* See more details here: https://strapi.io/documentation/v3.x/concepts/configurations.html#cron-tasks
|
||||
*/
|
||||
|
||||
module.exports = {
|
||||
|
@ -36,7 +36,7 @@
|
||||
],
|
||||
"externalDocs": {
|
||||
"description": "Find out more",
|
||||
"url": "https://strapi.io/documentation/3.0.0-beta.x/"
|
||||
"url": "https://strapi.io/documentation/v3.x/"
|
||||
},
|
||||
"security": [
|
||||
{
|
||||
|
@ -17,7 +17,7 @@ Your configuration is passed down to the cloudinary configuration. (e.g: `cloudi
|
||||
}
|
||||
```
|
||||
|
||||
The `sizeLimit` parameter must be a number. Be aware that the unit is in KB. When setting this value high, you should make sure to also configure the body parser middleware `maxFileSize` so the file can be sent and processed. Read more [here](https://strapi.io/documentation/3.0.0-beta.x/plugins/upload.html#configuration)
|
||||
The `sizeLimit` parameter must be a number. Be aware that the unit is in KB. When setting this value high, you should make sure to also configure the body parser middleware `maxFileSize` so the file can be sent and processed. Read more [here](https://strapi.io/documentation/v3.x/plugins/upload.html#configuration)
|
||||
|
||||
## Resources
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
'use strict';
|
||||
/**
|
||||
* Strapi telemetry package.
|
||||
* You can learn more at https://strapi.io/documentation/3.0.0-beta.x/global-strapi/usage-information.html#commitment-to-our-users-data-collection
|
||||
* You can learn more at https://strapi.io/documentation/v3.x/global-strapi/usage-information.html#commitment-to-our-users-data-collection
|
||||
*/
|
||||
|
||||
const { scheduleJob } = require('node-schedule');
|
||||
|
Loading…
x
Reference in New Issue
Block a user