From f9b6fa34eb982937d789c196dfcbbe83aeba4de7 Mon Sep 17 00:00:00 2001 From: Justin Dhillon Date: Thu, 29 Feb 2024 14:22:48 -0800 Subject: [PATCH] Fix hyperlinks in documentation --- README.md | 2 +- webpack.config.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 35889a94..473a9ecc 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ Contributions are very welcome. The easiest way is to fork this repo, and then make a pull request from your fork. The first time you make a pull request, you may be asked to sign a Contributor Agreement. -Please refer to our [contributor guidelines](https://github.com/edx/edx-platform/blob/master/CONTRIBUTING.rst) in the main edx-platform repo for +Please refer to our [contributor guidelines](https://github.com/openedx/.github/blob/master/CONTRIBUTING.md) in the main edx-platform repo for important additional information. ### Contributing and the edX Pattern Library diff --git a/webpack.config.js b/webpack.config.js index 5cf8574d..f4bc70d3 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -8,7 +8,7 @@ var path = require('path'), // Config specifically for webpack-dev-server (appended to main config in local development) devServerConfig = { - // enables Hot Module Replacement (https://webpack.github.io/docs/hot-module-replacement-with-webpack.html) + // enables Hot Module Replacement (https://webpack.js.org/guides/hot-module-replacement/) hot: true, publicPath: '/public', @@ -41,7 +41,7 @@ var path = require('path'), // Webpack 'chunks' are a loading mechanism for common code, more chunks can improve perf (esp. with H2) // There is more optimization to be done here! For more see: - // https://webpack.github.io/docs/code-splitting.html + // https://webpack.js.org/guides/code-splitting/ chunkFilename: 'chunk.[id].js' }, entry: { @@ -102,7 +102,7 @@ var path = require('path'), // In prod mode, we disable HMR and use ExtractTextPlugin to generate .css files, avoiding a FOUC if (options.debug) { // For more on this WDS/HMR configuration, see: - // http://webpack.github.io/docs/webpack-dev-server.html#hot-module-replacement + // https://webpack.js.org/guides/hot-module-replacement/ wpconfig.entry['pattern-library-doc'] = [].concat( 'webpack-dev-server/client?http://localhost:8080', 'webpack/hot/only-dev-server',