Created
May 17, 2023 22:14
-
-
Save phreakin/1ce96bd7c01337ba176e5ef2b85bd088 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
plugins: { | |
tailwindcss: { | |
config: './tailwind.config.js', | |
css: [ | |
'./resources/css/site.css', | |
'./resources/css/tailwind.css', | |
], | |
scss: [ | |
'./resources/sass/site.scss', | |
'./resources/sass/tailwind.scss', | |
], | |
sass: [ | |
'./resources/sass/site.sass', | |
'./resources/sass/tailwind.sass', | |
], | |
jit: false | |
}, | |
autoprefixer: { | |
config: { | |
browsers: [ | |
'last 2 versions', | |
'iOS >= 8', | |
'Safari >= 8', | |
'ie >= 10', | |
'Firefox >= 20', | |
'Chrome >= 20', | |
'Android >= 4.4' | |
], | |
grid: true | |
} | |
} | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment