Skip to content

Commit 6078acb

Browse files
authored
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
1 parent 569c3ed commit 6078acb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

website/pages/customization.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ module.exports = {
7373

7474
## Babel
7575

76-
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.
76+
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.
7777

7878
## Jest
7979

80-
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).
80+
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).
8181

8282
## ESLint
8383

84-
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).
84+
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).

0 commit comments

Comments
 (0)