File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ export default defineNuxtConfig({
66
66
// @ts -expect-error TODO: types for theme are not correct
67
67
logger . info ( 'Running `tailwindcss:resolvedConfig` hook...' , {
68
68
typography : Boolean ( config . theme . typography ) ,
69
- hasOld : Boolean ( oldConfig )
69
+ hasOld : Boolean ( oldConfig ) ,
70
70
} )
71
71
} ,
72
72
} satisfies Partial < ModuleHooks > ,
Original file line number Diff line number Diff line change @@ -97,10 +97,10 @@ export default defineNuxtModule<ModuleOptions>({
97
97
const postcssOptions
98
98
/* nuxt 3 */
99
99
= nuxt . options . postcss
100
- // @ts -expect-error older nuxt3
101
- || nuxt . options . build . postcss . postcssOptions
102
- // @ts -expect-error nuxt 2 type
103
- || nuxt . options . build . postcss as any
100
+ // @ts -expect-error older nuxt3
101
+ || nuxt . options . build . postcss . postcssOptions
102
+ // @ts -expect-error nuxt 2 type
103
+ || nuxt . options . build . postcss as any
104
104
postcssOptions . plugins = {
105
105
...( postcssOptions . plugins || { } ) ,
106
106
'tailwindcss/nesting' : postcssOptions . plugins ?. [ 'tailwindcss/nesting' ] ?? { } ,
You can’t perform that action at this time.
0 commit comments