1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-21 19:21:18 -04:00

move css minification from postcss to webpack (for better source maps)

This commit is contained in:
2021-06-26 19:16:54 -04:00
parent 943b426970
commit f5f64eb87e
6 changed files with 477 additions and 119 deletions

View File

@@ -1,8 +1,9 @@
const path = require("path");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const WebpackAssetsManifest = require("webpack-assets-manifest");
const SriPlugin = require("webpack-subresource-integrity");
const CopyPlugin = require("copy-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
const isProd = process.env.NODE_ENV === "production";
@@ -61,7 +62,28 @@ module.exports = {
use: [
{ loader: MiniCssExtractPlugin.loader },
{ loader: "css-loader" },
{ loader: "postcss-loader" },
{
loader: "postcss-loader",
options: {
postcssOptions: {
config: false,
plugins: [
require("autoprefixer")(),
require("postcss-svgo")({
encode: true,
}),
require("postcss-focus")(),
require("postcss-color-rgba-fallback")({
properties: [
"background-image"
],
}),
require("postcss-combine-duplicated-selectors")(),
require("postcss-normalize-charset")(),
],
},
},
},
{ loader: "sass-loader" },
],
},
@@ -79,6 +101,33 @@ module.exports = {
},
],
},
optimization: {
minimizer: [
`...`,
new CssMinimizerPlugin({
minify: CssMinimizerPlugin.cleanCssMinify,
minimizerOptions: {
compatibility: "*",
level: 1,
processImport: false,
format: {
breaks: {
afterAtRule: true,
afterBlockBegins: true,
afterBlockEnds: true,
afterComment: true,
afterRuleEnds: true,
beforeBlockEnds: true,
},
spaces: {
beforeBlockBegins: true,
},
semicolonAfterLastProperty: true,
},
},
}),
],
},
devServer: {
contentBase: path.join(__dirname, "public/"),
publicPath: "/assets/",