Files
gas-react-sheets/postcss.config.js
T
Pencho BELNEYSKI 4718f4b870 add initial support for tailwindcss (#134)
Add support for and demo using tailwindcss
2022-11-17 23:37:00 -05:00

7 lines
175 B
JavaScript

const tailwindcss = require('tailwindcss');
const autoprefixer = require('autoprefixer');
module.exports = {
plugins: ['postcss-preset-env', tailwindcss, autoprefixer],
};