mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-24 01:28:42 +02:00
initial commit
This commit is contained in:
12
frontend/postcss.config.js
Normal file
12
frontend/postcss.config.js
Normal file
@@ -0,0 +1,12 @@
|
||||
const postcssPresetEnv = require("postcss-preset-env");
|
||||
const tailwindcss = require('tailwindcss');
|
||||
|
||||
module.exports = {
|
||||
plugins: [postcssPresetEnv({
|
||||
/* use stage 2 features + disable logical properties and values rule */
|
||||
stage: 2,
|
||||
features: {
|
||||
'logical-properties-and-values': false
|
||||
}
|
||||
}), tailwindcss],
|
||||
};
|
||||
Reference in New Issue
Block a user