Niklas Mischkulnig
Niklas Mischkulnig
Maybe related: https://github.com/parcel-bundler/parcel/issues/8282
There's an ongoing discussion here as well with other maintainers: https://github.com/swc-project/swc/pull/9014
We bumped `browserslist-rs` to the supposedly faster 0.16.0 by now.
There are three stages where it could break: 1. The file watcher should pick up all changes That happens here https://github.com/parcel-bundler/parcel/blob/c3505e59a96c3c95aea16954883afe059b8e6da8/packages/core/core/src/Parcel.js#L435 2. Parcel should detect that the change should cause...
maybe `--public-url .`
@pawelkedra `--public-url ./`doesn't work for you?
Well, `` and `` do the same thing. The `./` is actually redudant, every path that doesn't start with a protocol or `/` is relative anyway.
Please try the nightly version `yarn add parcel@nightly`. This is probably already fixed
The problem is that `test.css` will also become a CSS module, and that then breaks with the ``. You should instead remove the global setting and then choose whether specific...
You cannot use CSS modules in HTML (so ``). Instead, remove the global setting and then do `` from HTML for non-module CSS and `import * as styles from "./my-component.module.css";`...