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

10 lines
166 B
JavaScript
Raw Permalink Normal View History

2020-09-30 22:32:36 -07:00
const autoprefixer = require('autoprefixer');
const tailwindcss = require('tailwindcss');
module.exports = {
plugins: [
tailwindcss,
autoprefixer,
],
};