Как использовать lost, autoprefixer и postcss-compatibility?
Я хочу знать порядок, в котором мы должны использовать autoprefixer
, lost
, postcssflexibility
в webpack
?
1 ответ
Решение
Вот основной пример (префикс через postcss, применение плагина precss и т. Д.).
веб-пакет 1
const autoprefixer = require('autoprefixer');
const precss = require('precss');
module.exports = {
module: {
loaders: [
{
test: /\.css$/,
loaders: ['style', 'css', 'postcss'],
},
],
},
// PostCSS plugins go here
postcss: function () {
return [autoprefixer, precss];
},
};
вебпак 2
module: {
rules: [
{
test: /\.css$/,
use: [
'style-loader',
'css-loader',
{
loader: 'postcss-loader',
options: {
ident: 'postcss', // Needed for now
plugins: function () {
// Set up plugins here
return [
require('autoprefixer'),
require('precss'),
];
},
},
},
],
},
],
},
Другим способом было бы отправить плагины в postcss.config.js, как указано в документации к postcss-loader. Хотя сложнее это сочинить.