feat: remove autoprefixer from webpack config

Removed autoprefixer from the webpack configuration to simplify the
build process. This change reduces dependencies and potential build
issues, aligning with efforts to streamline development workflows.
Future CSS prefixing needs will be evaluated for more integrated
solutions.
This commit is contained in:
Kumi 2024-03-28 09:15:32 +01:00
parent 3ab3a30884
commit a8e856ba17
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -1,7 +1,6 @@
const path = require("path");
const miniCssExtractPlugin = require("mini-css-extract-plugin");
const autoprefixer = require('autoprefixer');
module.exports = {
entry: "./src/index.js",