Skip to content

Commit 534fe4b

Browse files
committed
fix: update build script to disable minification in Parcel
- modify the build script in package.json to include the --no-minify flag for Parcel - this change aims to prevent issues related to CSS minification while maintaining compatibility with the existing PostCSS setup
1 parent 60dd76a commit 534fe4b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"scripts": {
66
"start": "parcel src/index.html",
77
"dev": "parcel src/index.html",
8-
"build": "parcel build src/index.html",
8+
"build": "parcel build src/index.html --no-minify",
99
"clean": "rm -rf dist .parcel-cache"
1010
},
1111
"devDependencies": {

0 commit comments

Comments
 (0)