Skip to content

Commit 26341f8

Browse files
committed
hotfix: typing hell
1 parent d842a62 commit 26341f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export default defineNuxtModule<ModuleOptions>({
137137
// Expose resolved tailwind config as an alias
138138
// https://tailwindcss.com/docs/configuration/#referencing-in-javascript
139139
if (moduleOptions.exposeConfig) {
140-
const resolveConfig = await import('tailwindcss/resolveConfig.js').then(r => r.default || r)
140+
const resolveConfig: any = await import('tailwindcss/resolveConfig.js').then(r => r.default || r)
141141
const resolvedConfig = resolveConfig(tailwindConfig)
142142
const template = addTemplate({
143143
filename: 'tailwind.config.mjs',

0 commit comments

Comments
 (0)