Skip to content

Instantly share code, notes, and snippets.

@joedixon
Last active August 13, 2019 20:08
Show Gist options
  • Save joedixon/bf95c69e63b986e02c74b235f39e24d1 to your computer and use it in GitHub Desktop.
Save joedixon/bf95c69e63b986e02c74b235f39e24d1 to your computer and use it in GitHub Desktop.
// app.css
@tailwind base;

@tailwind components;

@tailwind utilities;

@tailwind screens;

@import './custom.css';
// webpack.mix.js
mix.js('resources/js/app.js', 'public/js')
    .postCss('resources/css/app.css', 'public/css', [
        require('tailwindcss'),
    ])
    .version();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment