From 6078acb6d48975922b7cfb0a0e2753fd31ed3d84 Mon Sep 17 00:00:00 2001 From: Felix Mosheev <9304194+felixmosh@users.noreply.github.com> Date: Wed, 4 Nov 2020 23:46:56 +0200 Subject: [PATCH] fix: relative links in website to absolute links (#923) - relative links in website were not working as the files can't be viewed on the site - these were erroneously copy+pasted from the README, where the relative links work by pointing to files in the repo - those relative links don't work on the website - use absolute links instead to the main fork of the repo's `master` branch - this has a few caveats now, in that the README has a bit more desync from the website now and that, unlike the README, these point to a specific fork and branch - the README points to the same version; regardless if forked or on a different branch, it'll point to that branch's code --- website/pages/customization.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/pages/customization.md b/website/pages/customization.md index 886ee128e..9912eb16e 100644 --- a/website/pages/customization.md +++ b/website/pages/customization.md @@ -73,12 +73,12 @@ module.exports = { ## Babel -You can add your own `.babelrc` to the root of your project and TSDX will **merge** it with [its own Babel transforms](./src/babelPluginTsdx.ts) (which are mostly for optimization), putting any new presets and plugins at the end of its list. +You can add your own `.babelrc` to the root of your project and TSDX will **merge** it with [its own Babel transforms](https://github.com/formium/tsdx/blob/master/src/babelPluginTsdx.ts) (which are mostly for optimization), putting any new presets and plugins at the end of its list. ## Jest -You can add your own `jest.config.js` to the root of your project and TSDX will **shallow merge** it with [its own Jest config](./src/createJestConfig.ts). +You can add your own `jest.config.js` to the root of your project and TSDX will **shallow merge** it with [its own Jest config](https://github.com/formium/tsdx/blob/master/src/createJestConfig.ts). ## ESLint -You can add your own `.eslintrc.js` to the root of your project and TSDX will **deep merge** it with [its own ESLint config](./src/createEslintConfig.ts). +You can add your own `.eslintrc.js` to the root of your project and TSDX will **deep merge** it with [its own ESLint config](https://github.com/formium/tsdx/blob/master/src/createEslintConfig.ts).