mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 09:02:28 +01:00
18 lines
565 B
JavaScript
18 lines
565 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
require('postcss-import'),
|
|
// We want to make use of nesting following the CSS Nesting spec, and not the
|
|
// SASS style nesting.
|
|
//
|
|
// @see https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-nesting
|
|
require('tailwindcss/nesting')(require('postcss-nesting')),
|
|
require('tailwindcss'),
|
|
require('autoprefixer'),
|
|
require('postcss-preset-env')({
|
|
features: {
|
|
'nesting-rules': false,
|
|
},
|
|
}),
|
|
],
|
|
};
|