Skip to content

Commit

Permalink
Refactored postcss config to es6 module
Browse files Browse the repository at this point in the history
  • Loading branch information
smakhtin committed Dec 20, 2023
1 parent a2017f0 commit a959a62
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const tailwindcss = require('tailwindcss');
const autoprefixer = require('autoprefixer');
import autoprefixer from 'autoprefixer';
import tailwindcss from 'tailwindcss';

const config = {
plugins: [
Expand All @@ -10,4 +10,4 @@ const config = {
],
};

module.exports = config;
export default config;

0 comments on commit a959a62

Please sign in to comment.