Hi everyone!
Recently I'm running into an error when trying to run my React app in Parcel that says I have an invalid config for the compressor, but I haven't changed anything from the default configurations. I've tried reinstalling but the same error occurs.
Here's the error I'm getting:
@parcel/core: Invalid Parcel Config
node_modules/@parcel/config-default/index.json:149:2
148 | },
> 149 | "compressors": {
> | ^^^^^^^^^^^^^ Possible values: "extends", "validators", "filePath", "resolveFrom"
150 | "*": [
151 | "@parcel/compressor-raw"
This is what is in the index.json for @parcel:
"compressors": {
"*": [
"@parcel/compressor-raw"
]
},
I've tried searching for this as a bug, but didn't find any results?
Thanks for your help!