Skip to content

Commit 3f39f66

Browse files
committed
chore(release): v6.11.2
1 parent 734ef1c commit 3f39f66

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## v6.11.2
6+
7+
[compare changes](https://github.com/nuxt-modules/tailwindcss/compare/v6.11.1...v6.11.2)
8+
9+
### 🩹 Fixes
10+
11+
- **viewer:** Handle redirect and callback await, thank you danielroe :) ([734ef1c](https://github.com/nuxt-modules/tailwindcss/commit/734ef1c))
12+
13+
### 📖 Documentation
14+
15+
- Fix paths for build ([5971b0a](https://github.com/nuxt-modules/tailwindcss/commit/5971b0a))
16+
17+
### ❤️ Contributors
18+
19+
- Inesh Bose <[email protected]>
20+
521
## v6.11.1
622

723
[compare changes](https://github.com/nuxt-modules/tailwindcss/compare/v6.11.0...v6.11.1)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nuxtjs/tailwindcss",
3-
"version": "6.11.1",
3+
"version": "6.11.2",
44
"description": "TailwindCSS module for Nuxt",
55
"repository": "nuxt-modules/tailwindcss",
66
"license": "MIT",

src/viewer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const setupViewer = async (twConfig: Partial<TWConfig>, config: ViewerCon
3434
return sendRedirect(new H3Event(req, res), routeWithSlash, 301)
3535
}
3636

37-
next();
37+
next()
3838
},
3939
// @ts-expect-error untyped handler parameters
4040
{ route, handler: (req, res) => viewerDevMiddleware(new H3Event(req, res)) }

0 commit comments

Comments
 (0)