Skip to content

Commit 5971b0a

Browse files
authoredJan 25, 2024
docs: fix paths for build
1 parent f6128ae commit 5971b0a

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed
 

Diff for: ‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ yarn add --dev @nuxtjs/tailwindcss
4141
npm install --save-dev @nuxtjs/tailwindcss
4242
```
4343

44-
*You can test latest additions on [Nightly Releases](https://tailwindcss.nuxtjs.org/getting-started/setup#nightly-releases)!*
44+
*You can test latest additions on [Nightly Releases](https://tailwindcss.nuxtjs.org/getting-started/installation#nightly-releases)!*
4545

4646
2. Add `@nuxtjs/tailwindcss` to the `modules` section of `nuxt.config.{ts,js}`
4747

@@ -55,7 +55,7 @@ export default defineNuxtConfig({
5555

5656
That's it! You can now use Tailwind classes in your Nuxt app ✨
5757

58-
[📖  Read more](https://tailwindcss.nuxtjs.org/getting-started/setup)
58+
[📖  Read more](https://tailwindcss.nuxtjs.org/getting-started/)
5959

6060
## Contributing
6161

Diff for: ‎docs/content/2.tailwind/1.config.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The `tailwind.config` file and `config` options are subject to the [merging stra
4343

4444
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).
4545

46-
You can configure the path with the [configPath option](/getting-started/options#configpath).
46+
You can configure the path with the [configPath option](/getting-started/configuration#configpath).
4747

4848
::callout{color="blue" icon="i-ph-info-duotone"}
4949
This config has the highest priority to overwrite the defaults and [tailwindcss.config](#config-option).

Diff for: ‎docs/content/index.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ hero:
88
links:
99
- label: 'Get started'
1010
icon: 'i-heroicons-rocket-launch'
11-
to: '/getting-started/setup'
11+
to: '/getting-started/installation'
1212
size: lg
1313
- label: 'Star on GitHub'
1414
icon: 'i-simple-icons-github'
@@ -32,7 +32,7 @@ features:
3232
items:
3333
- title: 'Zero Configuration'
3434
description: 'This module enables a quick and easy setup of Tailwind CSS in your Nuxt application.'
35-
to: '/getting-started/setup'
35+
to: '/getting-started/installation'
3636
- title: 'CSS Nesting'
3737
description: 'Supports CSS Nesting with postcss-nesting to use the latest CSS syntax.'
3838
to: 'https://drafts.csswg.org/css-nesting-1/'

Diff for: ‎docs/nuxt.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default defineNuxtConfig({
2525
}
2626
},
2727
routeRules: {
28-
'/getting-started': { redirect: '/getting-started/setup' },
28+
'/getting-started': { redirect: '/getting-started/installation' },
2929
'/tailwind': { redirect: '/tailwind/config' },
3030
'/examples': { redirect: '/examples/basic' },
3131
'/api/search.json': { prerender: true }

Diff for: ‎docs/public/_redirects

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
/setup /getting-started/setup 302!
2-
/options /getting-started/options 302!
1+
/installation /getting-started/installation 302!
2+
/configuration /getting-started/configuration 302!
33
/releases /community/changelog 302!

0 commit comments

Comments
 (0)
Please sign in to comment.