Merge branch 'main' into enhancement/axios-refactoring

This commit is contained in:
Simone 2022-11-09 10:03:07 +01:00 committed by GitHub
commit 62c81f14ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 5 deletions

View File

@ -89,7 +89,7 @@ cd ./examples/getstarted
yarn develop
```
Make sure to read the [`getstarted` application README](./examples/getstarted/README.md) for more details.
Make sure to read the [`getstarted` application README](https://github.com/strapi/strapi/blob/main/examples/getstarted/README.md) for more details.
### 5. Running the administration panel in development mode
@ -177,7 +177,7 @@ Before submitting an issue you need to make sure:
- You provide steps to reproduce the issue.
- You have tried all the following (if relevant), and your issue remains:
- Make sure you have the right application started.
- Make sure the [issue template](.github/ISSUE_TEMPLATE) is respected.
- Make sure the [issue template] is respected.
- Make sure your issue body is readable and [well formatted](https://guides.github.com/features/mastering-markdown).
- Make sure you've stopped the Strapi server with CTRL+C and restarted it.
- Make sure your application has a clean `node_modules` directory, meaning:

View File

@ -10,7 +10,7 @@ const config = {
tagline: 'Dinosaurs are cool',
url: 'https://contributor.strapi.io',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenLinks: 'warn',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.png',
organizationName: 'strapi',
@ -31,8 +31,7 @@ const config = {
return {
resolve: {
alias: {
// assuming root node_modules is up from "./packages/<your-docusaurus>
react: path.resolve('./node_modules/react'),
react: path.resolve(__dirname, './node_modules/react'),
},
},
};