Skip to content

Commit 281df61

Browse files
committedJan 18, 2024
chore: update readme
1 parent 4396ef0 commit 281df61

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed
 

Diff for: ‎README.md

+13-12
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717

1818
## Features
1919

20-
- 👌  Zero configuration to start *([see video](https://tailwindcss.nuxtjs.org/#quick-start))*
20+
- 👌  Zero configuration to start
2121
- 🪄  Includes [CSS Nesting](https://drafts.csswg.org/css-nesting-1/) with [postcss-nesting](https://github.com/csstools/postcss-nesting)
22-
- 🎨  Discover your Tailwind Colors *([see video](https://tailwindcss.nuxtjs.org/#tailwind-colors))*
22+
- 🎨  Discover your Tailwind Config & Colors *([see video](https://tailwindcss.nuxtjs.org/tailwind/viewer))*
2323
- ⚙️  [Reference your Tailwind config](https://tailwindcss.nuxtjs.org/tailwind/config/#referencing-in-the-application) in your app
24-
- 📦  Extendable by [Nuxt modules](https://nuxt.com/modules)
25-
- 🚀  Supports both [Nuxt 3](https://nuxt.com) and [Nuxt 2](https://nuxtjs.org/)
24+
- 📦  Extendable by [Nuxt modules](https://nuxt.com/modules) using [hooks](https://tailwindcss.nuxtjs.org/tailwind/config#hooks)
25+
- 🚀  Supports both [Nuxt 3](https://nuxt.com) and [Nuxt 2](https://v2.nuxt.com/)
2626

2727
[📖  Read more](https://tailwindcss.nuxtjs.org)
2828

@@ -41,14 +41,16 @@ 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)!*
45+
4446
2. Add `@nuxtjs/tailwindcss` to the `modules` section of `nuxt.config.{ts,js}`
4547

46-
```js
47-
{
48+
```ts
49+
export default defineNuxtConfig({
4850
modules: [
4951
'@nuxtjs/tailwindcss'
5052
]
51-
}
53+
})
5254
```
5355

5456
That's it! You can now use Tailwind classes in your Nuxt app ✨
@@ -57,9 +59,10 @@ That's it! You can now use Tailwind classes in your Nuxt app ✨
5759

5860
## Contributing
5961

60-
You can contribute to this module online with CodeSandBox:
62+
You can contribute to this module online:
6163

62-
[![Edit @nuxtjs/tailwindcss](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/github/nuxt-modules/tailwindcss/tree/main/?fontsize=14&hidenavigation=1&theme=dark)
64+
[![Edit @nuxtjs/tailwindcss in CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/github/nuxt-modules/tailwindcss/tree/main/?fontsize=14&hidenavigation=1&theme=dark)
65+
[![Edit @nuxtjs/tailwindcss in Codeflow](https://developer.stackblitz.com/img/open_in_codeflow.svg)](https://pr.new/nuxt-modules/tailwindcss)
6366

6467
Or locally:
6568

@@ -81,9 +84,7 @@ Check out the [deployment documentation](https://nuxt.com/docs/getting-started/d
8184

8285
## License
8386

84-
[MIT License](./LICENSE)
85-
86-
Copyright (c) Nuxt Community
87+
[MIT](./LICENSE) - Made with 💚
8788

8889
<!-- Badges -->
8990
[npm-version-src]: https://img.shields.io/npm/v/@nuxtjs/tailwindcss/latest.svg?style=flat&colorA=18181B&colorB=28CF8D

0 commit comments

Comments
 (0)
Please sign in to comment.