feat: postcss config

This commit is contained in:
원더 2021-01-04 20:13:15 +09:00
parent 894dec5a73
commit dcdaa97d0f

View File

@ -1,6 +1,17 @@
module.exports = { module.exports = {
plugins: { plugins: [
tailwindcss: {}, 'tailwindcss',
autoprefixer: {}, [
}, 'postcss-preset-env',
{
autoprefixer: {
flexbox: 'no-2009',
},
stage: 3,
features: {
'custom-properties': false,
},
},
],
],
} }