Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- module.exports = {
- module: {
- rules: [
- {
- test: /\.css$/,
- loader: 'postcss-loader',
- options: {
- postcssOptions: {
- ident: 'postcss',
- plugins: [
- require('postcss-import'),
- require('tailwindcss'),
- require('postcss-nested'),
- require('autoprefixer')
- ],
- },
- }
- },
- ],
- },
- };
Advertisement
Add Comment
Please, Sign In to add comment