This repository has been archived on 2022-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
srprices/postcss.config.js
2020-09-30 22:35:22 -07:00

10 lines
166 B
JavaScript

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