tailwindcss icon indicating copy to clipboard operation
tailwindcss copied to clipboard

allow for network imports

Open seanaye opened this issue 1 year ago • 2 comments

This PR adds support for url imports in the binary executable. This allows for tailwind plugins to be imported from the internet if you aren't using node.js. e.g

import daisyui from "https://esm.sh/daisyui"
module.exports = {
  content: ['./templates/**/*.html'],
  theme: {
    extend: {},
  },
  plugins: [
    require('@tailwindcss/forms'),
    require('@tailwindcss/typography'),
    daisyui
  ],
}

seanaye avatar Mar 20 '24 00:03 seanaye