We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b5393d commit e1e8a10Copy full SHA for e1e8a10
packages/webpack5/src/configuration/base.ts
@@ -104,7 +104,9 @@ export default function (config: Config, env: IWebpackEnv = _env): Config {
104
105
// Add android app components to the bundle to SBG can generate the java classes
106
if (platform === 'android') {
107
- const appComponents = Array.isArray(env.appComponents) ? env.appComponents : env.appComponents && [env.appComponents] || [];
+ const appComponents = Array.isArray(env.appComponents)
108
+ ? env.appComponents
109
+ : (env.appComponents && [env.appComponents]) || [];
110
appComponents.push('@nativescript/core/ui/frame');
111
appComponents.push('@nativescript/core/ui/frame/activity');
112
appComponents.map((component) => {
0 commit comments