@meteorjs/rspack 0.0.62 → 0.0.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/rspack.config.js +9 -6
package/package.json
CHANGED
package/rspack.config.js
CHANGED
|
@@ -667,12 +667,15 @@ module.exports = async function (inMeteor = {}, argv = {}) {
|
|
|
667
667
|
}
|
|
668
668
|
|
|
669
669
|
// Establish Angular overrides to ensure proper integration
|
|
670
|
-
const angularExpandConfig = isAngularEnabled
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
670
|
+
const angularExpandConfig = isAngularEnabled
|
|
671
|
+
? {
|
|
672
|
+
mode: isProd ? "production" : "development",
|
|
673
|
+
devServer: { port: Meteor.devServerPort },
|
|
674
|
+
stats: { preset: "normal" },
|
|
675
|
+
infrastructureLogging: { level: "info" },
|
|
676
|
+
...(isProd && isClient && { output: { module: false } }),
|
|
677
|
+
}
|
|
678
|
+
: {};
|
|
676
679
|
|
|
677
680
|
const config = mergeSplitOverlap(
|
|
678
681
|
isClient ? clientConfig : serverConfig,
|