How to manually set the path of //# sourceMappingURL inside the created bundle.js? Parcel currently creates a wrong path to the bundle.js.map.
Parcel config:
"scripts": {
"watch:js": "parcel watch ./src/js/index.js --out-dir ./public/js --out-file bundle.js",
}
Current Behavior:
~ bundle.js ~
//# sourceMappingURL=/bundle.js.map
Expected Behavior:
~ bundle.js ~
//# sourceMappingURL=/js/bundle.js.map