Skip to content

Instantly share code, notes, and snippets.

@phreakin
Created May 17, 2023 22:14
Show Gist options
  • Save phreakin/1ce96bd7c01337ba176e5ef2b85bd088 to your computer and use it in GitHub Desktop.
Save phreakin/1ce96bd7c01337ba176e5ef2b85bd088 to your computer and use it in GitHub Desktop.
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