chore(css-config.js): drop autoprefixer dependency

This commit is contained in:
Cory Dransfeldt 2025-03-31 13:07:09 -07:00
parent 5290dfb73b
commit 9d4826d72b
No known key found for this signature in database
3 changed files with 3 additions and 69 deletions

View file

@ -3,7 +3,6 @@ import path from "node:path";
import postcss from "postcss";
import postcssImport from "postcss-import";
import postcssImportExtGlob from "postcss-import-ext-glob";
import autoprefixer from "autoprefixer";
import cssnano from "cssnano";
export const cssConfig = (eleventyConfig) => {
@ -18,7 +17,6 @@ export const cssConfig = (eleventyConfig) => {
let result = await postcss([
postcssImportExtGlob,
postcssImport,
autoprefixer,
cssnano,
]).process(inputContent, { from: inputPath });