Skip to content
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

chore: Docusaurus throw on broken links #18230

Merged
merged 1 commit into from
Jan 31, 2022
Merged
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 docs-v2/docs/connecting-to-databases/bigquery.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The recommended connector library for BigQuery is

### Install BigQuery Driver

Follow the steps [here](/docs/databases/dockeradddrivers) about how to
Follow the steps [here](/docs/connecting-to-databases/docker-add-drivers) about how to
install new database drivers when setting up Superset locally via docker-compose.

```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ with the recommended connector library for each database.

### 1. Determine the driver you need

To figure out how to install the [database driver](/docs/databases/installing-database-drivers) of your choice.
To figure out how to install the [database driver](/docs/connecting-to-databases/installing-database-drivers) of your choice.

In the example, we'll walk through the process of installing a MySQL driver in Superset.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ version: 1
Superset requires a Python DB-API database driver and a SQLAlchemy
dialect to be installed for each datastore you want to connect to.

You can read more [here](/docs/connecting-to-databases/dockeradddrivers) about how to
You can read more [here](/docs/connecting-to-databases/docker-add-drivers) about how to
install new database drivers into your Superset configuration.

### Supported Databases and Dependencies
Expand Down
4 changes: 2 additions & 2 deletions docs-v2/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ const config = {
'Apache Superset is a modern data exploration and visualization platform',
url: 'https://superset.apache.org',
baseUrl: '/',
onBrokenLinks: 'warn',
onBrokenMarkdownLinks: 'warn',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'throw',
favicon: 'img/favicon.ico',
organizationName: 'apache', // Usually your GitHub org/user name.
projectName: 'superset', // Usually your repo name.
Expand Down