1.3.0 • Published 3 years ago

mix-tailwindcss v1.3.0

Weekly downloads
743
License
MIT
Repository
github
Last release
3 years ago

Laravel Mix Tailwind CSS

Latest Version on NPM Software License StyleCI Total Downloads

This extension provides instant Tailwind CSS support to your Mix builds.
Please make sure that you are using laravel-mix version 2.1 or higher.

This package works with Tailwind version 1.0 or higher but also with earlier versions.

Usage

You can install the package with npm or yarn:

npm install mix-tailwindcss --save-dev
yarn add mix-tailwindcss --dev

Then require the extension in your Mix configuration:

const mix = require('laravel-mix');

require('mix-tailwindcss');
...

Enable the extension by calling tailwind() in your Mix chain:

mix.sass('resources/sass/app.scss', 'public/css')
   .tailwind();

If you are using a custom configuration file name, you will need to specify it when calling tailwind():

mix.sass('resources/sass/app.scss', 'public/css')
   .tailwind('./tailwindcss-config.js');

And you're done!

Don't forget to add the Tailwind directives to your css entry file.

PostCSS with postcss-import

If you're not integrating any Sass, Less or Stylus stylesheets you can use the mix.postCss() method.

When the postcss-import plugin is installed, it will be automatically detected and applied to your build.

mix.postCss('resources/css/app.css', 'public/css')
    .tailwind();

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

1.3.0

3 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago