Skip to content

Commit 3dd3ada

Browse files
committedMar 10, 2025·
chore: fix lint
1 parent 6db6f1f commit 3dd3ada

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎playground/nuxt.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export default defineNuxtConfig({
6666
// @ts-expect-error TODO: types for theme are not correct
6767
logger.info('Running `tailwindcss:resolvedConfig` hook...', {
6868
typography: Boolean(config.theme.typography),
69-
hasOld: Boolean(oldConfig)
69+
hasOld: Boolean(oldConfig),
7070
})
7171
},
7272
} satisfies Partial<ModuleHooks>,

‎src/module.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ export default defineNuxtModule<ModuleOptions>({
9797
const postcssOptions
9898
/* nuxt 3 */
9999
= 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
104104
postcssOptions.plugins = {
105105
...(postcssOptions.plugins || {}),
106106
'tailwindcss/nesting': postcssOptions.plugins?.['tailwindcss/nesting'] ?? {},

0 commit comments

Comments
 (0)
Please sign in to comment.