Skip to content

Fix hyperlinks in documentation #426

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',

Expand Down Expand Up @@ -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: {
Expand Down Expand Up @@ -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',
Expand Down