From e186c1fbce1d7644d156fc04b236b21e06096454 Mon Sep 17 00:00:00 2001 From: Joakim Carlstein Date: Mon, 18 Dec 2023 16:28:46 +0100 Subject: [PATCH] docs: a few more links to fix --- docs/src/content/docs/intro/quick-start.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/src/content/docs/intro/quick-start.mdx b/docs/src/content/docs/intro/quick-start.mdx index 3f70685..12eac1f 100644 --- a/docs/src/content/docs/intro/quick-start.mdx +++ b/docs/src/content/docs/intro/quick-start.mdx @@ -38,7 +38,7 @@ But for now, this is the way to go. ### Pick a storage plugin -Emigrate uses a [storage plugin](../plugins/storage/) to store the migration history. +Emigrate uses a [storage plugin](../../plugins/storage/) to store the migration history. Install the plugin you want to use, for example: @@ -84,7 +84,7 @@ Otherwise the file would have the `.js` extension by default. :::tip[Did you know?] You can avoid typing `--plugin mysql` by configuring Emigrate using an `emigrate.config.js` file. -See [Configuration](../reference/configuration/) for more information. +See [Configuration](../../reference/configuration/) for more information. ::: #### Fill the migration file @@ -132,7 +132,7 @@ npx emigrate up --storage mysql --plugin mysql --dry ``` :::note -This will connect to the database using some default values. For ways to configure the connection, see [Configuration](../reference/configuration/). +This will connect to the database using some default values. For ways to configure the connection, see [Configuration](../../reference/configuration/). ::: :::caution @@ -141,6 +141,6 @@ Be sure to configure the connection correctly and use the `--dry` flag to test y ::: :::tip[Did you know?] -In the example above the `@emigrate/mysql` plugin is used twice, once for the `--storage` option as a [Storage Plugin](../plugins/storage/) -and once for the `--plugin` option as a [Loader Plugin](../plugins/loaders/) to be able to read `.sql` files. +In the example above the `@emigrate/mysql` plugin is used twice, once for the `--storage` option as a [Storage Plugin](../../plugins/storage/) +and once for the `--plugin` option as a [Loader Plugin](../../plugins/loaders/) to be able to read `.sql` files. :::