- Install the following:
npm i tailwindcss postcss-scss postcss-import postcss-loader @angular-builders/custom-webpack -D- In the styles.scssfile and add the following:
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";- 
In the project directory, use npx tailwind init.
- 
Create webpack.config.jsfile and add the following code:
module.exports = {
    module: {
        rules: [
            {
                test: /\.scss$/,
                loader: 'postcss-loader',
                options: {
                    ident: 'postcss',
                    syntax: 'postcss-scss',
                    plugins: () => [
                        require('postcss-import'),
                        require('tailwindcss'),
                        require('autoprefixer'),
                    ]
                }
            }
        ]
    }
};- Modify the angular.json:
{
  "architect": {
    "build": {
      "builder": "@angular-builders/custom-webpack:browser",
      "options": {
        "customWebpackConfig": {
          "path": "./webpack.config.js"
        }
      }
    },
    "serve": {
      "builder": "@angular-builders/custom-webpack:dev-server",
      "options": {
        "customWebpackConfig": {
          "path": "./webpack.config.js"
        }
      }
    }
  }
}There might be cases where the "builder: " might have different address. We would need to change it to the code we have above: "builder": "@angular-builders/custom-webpack:browser", & "builder": "@angular-builders/custom-webpack:dev-server".
Start building Angular project with npm start or ng serve --open.
Now we can use Tailwind CSS.
Source: Angular 8 + Tailwind CSS Guid (Updated for Angular 9) by Sean Kerwin