Guest User

Untitled

a guest
Jan 11th, 2022
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.44 KB | None | 0 0
  1. module.exports = {
  2.   module: {
  3.     rules: [
  4.       {
  5.         test: /\.css$/,
  6.         loader: 'postcss-loader',
  7.         options: {
  8.           postcssOptions: {
  9.             ident: 'postcss',
  10.             plugins: [
  11.               require('postcss-import'),
  12.               require('tailwindcss'),
  13.               require('postcss-nested'),
  14.               require('autoprefixer')
  15.             ],
  16.           },
  17.         }
  18.       },
  19.     ],
  20.   },
  21. };
  22.  
Advertisement
Add Comment
Please, Sign In to add comment