mirror of
https://github.com/strapi/strapi.git
synced 2025-07-14 20:41:51 +00:00
12 lines
241 B
JavaScript
Executable File
12 lines
241 B
JavaScript
Executable File
const postcssSmartImport = require('postcss-smart-import');
|
|
const precss = require('precss');
|
|
const autoprefixer = require('autoprefixer');
|
|
|
|
module.exports = {
|
|
plugins: [
|
|
postcssSmartImport(),
|
|
precss(),
|
|
autoprefixer(),
|
|
],
|
|
};
|