github quasarframework/quasar @quasar/app-webpack-v4.0.0-beta.3

Changes

  • Minimum Node.js version is now v18.12 due to latest webpack dependencies (great opportunity to stay on the very latest underlying packages while we're in beta)
  • Upgraded all deps, including webpack-dev-server (v4 to v5)

Due to the upgrade to webpack-dev-server v5, you are required to do this change (if you have configured any proxies):

devServer: {
- proxy: {
-   "/api": {
-     target: "http://localhost:3000",
-     changeOrigin: true,
-   },
- }
+ proxy: [
+   {
+     context: ["/api"],
+     target: "http://localhost:3000",
+     changeOrigin: true,
+   },
+ ]
}

Donations

Quasar Framework is an open-source MIT-licensed project made possible due to the generous contributions by sponsors and backers. If you are interested in supporting this project, please consider the following:

Don't miss a new quasar release

NewReleases is sending notifications on new releases.