Skip to content

Commit

Permalink
tailwindcss
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Zogg committed Apr 6, 2020
1 parent 8de7df6 commit 91aebfd
Show file tree
Hide file tree
Showing 36 changed files with 1,262 additions and 954 deletions.
23 changes: 23 additions & 0 deletions config-overrides.js
@@ -0,0 +1,23 @@
module.exports = {
webpack: function (config, env) {

config.module.rules.push({
test: /\.css$/,
use: [
{
loader: 'postcss-loader',
options: {
ident: 'postcss',
plugins: [
require('tailwindcss'),
require('postcss-nested'),
require('autoprefixer'),
],
},
},
]
});

return config;
}
};

0 comments on commit 91aebfd

Please sign in to comment.