Skip to content

Commit

Permalink
Fix esm import of tailwindcss/plugin
Browse files Browse the repository at this point in the history
ESM imports need to specify the filename extension when importing individual files.
  • Loading branch information
dawnmist committed Mar 21, 2024
1 parent 9867448 commit c4f0c42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@headlessui-tailwindcss/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import plugin from 'tailwindcss/plugin'
import plugin from 'tailwindcss/plugin.js'

interface Options {
/**
Expand Down

0 comments on commit c4f0c42

Please sign in to comment.