Skip to content

Commit f47e093

Browse files
authored
fix(hmr): fix variable
1 parent a94cbaf commit f47e093

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/internal-context/load.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ const createInternalContext = async (moduleOptions: ModuleOptions, nuxt = useNux
222222
if (Object.keys(configUpdatedHook).includes(join(nuxt.options.rootDir, path))) {
223223
const ctx = twCtx.use()
224224
setTimeout(async () => {
225-
await import(ctx.dst).then(async (config) => {
225+
await import(ctx.dst).then(async (_config) => {
226226
twCtx.set({ config: resolveTWConfig(_config) })
227227
await nuxt.callHook('tailwindcss:internal:regenerateTemplates')
228228
})

0 commit comments

Comments
 (0)