diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index aa96d15630..95f08311ab 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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: diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 3c86a3a35d..bf43d45cd4 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -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/ - react: path.resolve('./node_modules/react'), + react: path.resolve(__dirname, './node_modules/react'), }, }, };