Skip to content

Commit 73f50bd

Browse files
committed
🐛 Fix broken links in documentation
1 parent b48c3b5 commit 73f50bd

File tree

2 files changed

+19
-24
lines changed

2 files changed

+19
-24
lines changed

website/docs/commands/build.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@ sidebar_label: Build
88
chayns-toolkit build
99
```
1010

11-
Compiles your source code for production. The output is emitted into a `build/`
12-
folder at the root of your project.
11+
Compiles your source code for production. The output is emitted into a `build/` folder at the root
12+
of your project.
1313

1414
## Analyzing the Bundle Size
1515

1616
When you pass the `--analyze` flag
17-
[`webpack-bundle-analyzer`](https://github.com/webpack-contrib/webpack-bundle-analyzer)
18-
starts up after the build so you can investigate the bundle size. It runs for as
19-
long as you keep the terminal process alive.
17+
[`webpack-bundle-analyzer`](https://github.com/webpack-contrib/webpack-bundle-analyzer) starts up
18+
after the build so you can investigate the bundle size. It runs for as long as you keep the terminal
19+
process alive.
2020

2121
## Parameters
2222

23-
| Parameters | Function |
24-
| ----------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
25-
| `-a`, `--analyze` | Analyze your bundle with [`webpack-bundle-analyzer`](https://github.com/webpack-contrib/webpack-bundle-analyzer) after compilation. [Read more](#analyzing-your-bundle) |
23+
| Parameters | Function |
24+
| ----------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
25+
| `-a`, `--analyze` | Analyze your bundle with [`webpack-bundle-analyzer`](https://github.com/webpack-contrib/webpack-bundle-analyzer) after compilation. [Read more](#analyzing-the-bundle-size) |
2626

2727
## Browser Support
2828

@@ -35,8 +35,7 @@ not dead
3535
not op_mini all
3636
```
3737

38-
You can check the exact browsers and versions this matches at any time by
39-
running
38+
You can check the exact browsers and versions this matches at any time by running
4039

4140
```bash
4241
npx browserslist ">0.5%, not dead, not op_mini all"

website/docs/commands/dev.md

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,13 @@ sidebar_label: Dev
88
chayns-toolkit dev
99
```
1010

11-
Starts a development server on
12-
[`http://localhost:1234/`](http://localhost:1234/) or
13-
[`https://0.0.0.0:1234/`](https://0.0.0.0:1234/) if SSL certificates are
14-
configured.
11+
Starts a development server on [`http://localhost:1234/`](http://localhost:1234/) or
12+
[`https://0.0.0.0:1234/`](https://0.0.0.0:1234/) if SSL certificates are configured.
1513

16-
Fast Refresh is automatically enabled, so you can make edits to your project and
17-
see them in real time.
14+
Fast Refresh is automatically enabled, so you can make edits to your project and see them in real
15+
time.
1816

19-
You can configure SSL certificates, host and port in the `toolkit.config.js`
20-
configuration file:
17+
You can configure SSL certificates, host and port in the `toolkit.config.js` configuration file:
2118

2219
```js {3,4,5,6} title="/toolkit.config.js"
2320
module.exports = {
@@ -33,14 +30,13 @@ module.exports = {
3330

3431
:::info
3532

36-
To achieve faster (re-)build times during development this command only
37-
transpiles your code to work with the latest versions of Chrome, Safari and
38-
Firefox.
33+
To achieve faster (re-)build times during development this command only transpiles your code to work
34+
with the latest versions of Chrome, Safari and Firefox.
3935

4036
:::
4137

4238
## Parameters
4339

44-
| Parameters | Function |
45-
| ------------------ | -------------------------------------------------------------------------------------------- |
46-
| `-d`, `--devtools` | Debug your application with the standalone React Devtools. [Read more](../features/devtools) |
40+
| Parameters | Function |
41+
| ------------------ | -------------------------------------------------------------------------------------------------- |
42+
| `-d`, `--devtools` | Debug your application with the standalone React Devtools. [Read more](../features/react-devtools) |

0 commit comments

Comments
 (0)