You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1367d57#790 Thanks @marvinhagemeister! - Serve exactly matched files in root (default: /public) as is instead of serving the fallback index.html. This effectively turns the root directory in an asset directory.
9025ca1#762 Thanks @marvinhagemeister! - Fix unable to intercept WMR middlewares. Custom middlewares are now the first to be processed, similar to plugins.
d94937f#728 Thanks @marvinhagemeister! - Fix Cannot read property 'edit' of null error. This was caused by a wrong alternative to substring matches of String.prototype.replace.
b69f35a#724 Thanks @marvinhagemeister! - Allow plugins to intercept any file that's imported in JavaScript, not just script and stylesheet files.
Patch Changes
e963a56#715 Thanks @marvinhagemeister! - Rewrite internal source map handling. This adds full support for source maps during development and production and ensures that .map files are served correctly.
// "Or Or Equals" (or, the Mallet operator :wink:)a||=b;a||(a=b);// "And And Equals"a&&=b;a&&(a=b);// "QQ Equals"a??=b;a??(a=b);
71ef3aa#710 Thanks @marvinhagemeister! - Add support for private class fields which is a recent addition to JavaScript (currently Stage 3). We're adding it because it's supported in all major browsers natively.
21b467e#719 Thanks @marvinhagemeister! - Fix HMR updates not bubbled through proxy modules. This resolves an issue where the page was not updated when a new CSS class was added to a CSS-Module or Sass-Module.