diff --git a/README.md b/README.md index aa0c052e..ca673f3b 100755 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ yarn add --dev @nuxtjs/tailwindcss npm install --save-dev @nuxtjs/tailwindcss ``` -*You can test latest additions on [Nightly Releases](https://tailwindcss.nuxtjs.org/getting-started/setup#nightly-releases)!* +*You can test latest additions on [Nightly Releases](https://tailwindcss.nuxtjs.org/getting-started/installation#nightly-releases)!* 2. Add `@nuxtjs/tailwindcss` to the `modules` section of `nuxt.config.{ts,js}` @@ -55,7 +55,7 @@ export default defineNuxtConfig({ That's it! You can now use Tailwind classes in your Nuxt app ✨ -[📖  Read more](https://tailwindcss.nuxtjs.org/getting-started/setup) +[📖  Read more](https://tailwindcss.nuxtjs.org/getting-started/) ## Contributing diff --git a/docs/content/2.tailwind/1.config.md b/docs/content/2.tailwind/1.config.md index 4e98850e..47e17f91 100644 --- a/docs/content/2.tailwind/1.config.md +++ b/docs/content/2.tailwind/1.config.md @@ -43,7 +43,7 @@ The `tailwind.config` file and `config` options are subject to the [merging stra If a `tailwind.config` file is present, it will be imported and used to overwrite the default configuration. All of the following file extensions will work by default: `.js`, `.cjs`, `.mjs`, and `.ts`. When not using the `.cjs` file extension, you need to use ESM syntax (see #549). -You can configure the path with the [configPath option](/getting-started/options#configpath). +You can configure the path with the [configPath option](/getting-started/configuration#configpath). ::callout{color="blue" icon="i-ph-info-duotone"} This config has the highest priority to overwrite the defaults and [tailwindcss.config](#config-option). diff --git a/docs/content/index.yml b/docs/content/index.yml index fd8dd2f9..0963604c 100644 --- a/docs/content/index.yml +++ b/docs/content/index.yml @@ -8,7 +8,7 @@ hero: links: - label: 'Get started' icon: 'i-heroicons-rocket-launch' - to: '/getting-started/setup' + to: '/getting-started/installation' size: lg - label: 'Star on GitHub' icon: 'i-simple-icons-github' @@ -32,7 +32,7 @@ features: items: - title: 'Zero Configuration' description: 'This module enables a quick and easy setup of Tailwind CSS in your Nuxt application.' - to: '/getting-started/setup' + to: '/getting-started/installation' - title: 'CSS Nesting' description: 'Supports CSS Nesting with postcss-nesting to use the latest CSS syntax.' to: 'https://drafts.csswg.org/css-nesting-1/' diff --git a/docs/nuxt.config.ts b/docs/nuxt.config.ts index eb5b74a2..b6ba262b 100644 --- a/docs/nuxt.config.ts +++ b/docs/nuxt.config.ts @@ -25,7 +25,7 @@ export default defineNuxtConfig({ } }, routeRules: { - '/getting-started': { redirect: '/getting-started/setup' }, + '/getting-started': { redirect: '/getting-started/installation' }, '/tailwind': { redirect: '/tailwind/config' }, '/examples': { redirect: '/examples/basic' }, '/api/search.json': { prerender: true } diff --git a/docs/public/_redirects b/docs/public/_redirects index 400f11e8..fab4de96 100644 --- a/docs/public/_redirects +++ b/docs/public/_redirects @@ -1,3 +1,3 @@ -/setup /getting-started/setup 302! -/options /getting-started/options 302! +/installation /getting-started/installation 302! +/configuration /getting-started/configuration 302! /releases /community/changelog 302!