You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
197 B

11 months ago
  1. import tailwind from 'tailwindcss'
  2. import autoprefixer from 'autoprefixer'
  3. import tailwindConfig from './tailwind.config.js'
  4. export default {
  5. plugins: [tailwind(tailwindConfig), autoprefixer],
  6. }