File size: 380 Bytes
a5d0f2e
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// File Objective  : PostCSS processor config to compile Tailwind utility utility classes.
// Scope           : apps/web build pipeline.
// What this file does:
//   1. Wires tailwindcss and autoprefixer plugins.
// What it does not do:
//   1. Perform custom asset optimization or minification.

module.exports = {
  plugins: {
    tailwindcss: {},
    autoprefixer: {},
  },
};