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 90ffd14 commit 388e1adCopy full SHA for 388e1ad
builders/utils/index.ts
@@ -61,13 +61,15 @@ export function prepareBrowserConfig(
61
options.consolelogsPort
62
} }`
63
);
64
- if (optionsStarter.scripts) {
65
- optionsStarter.scripts.push({
+ if (!optionsStarter.scripts) {
+ optionsStarter.scripts = [];
66
+ }
67
+ optionsStarter.scripts.push({
68
input: configPath,
69
bundleName: 'consolelogs',
70
lazy: false,
71
});
72
73
input: getSystemPath(
74
join(
75
normalize(__dirname),
@@ -78,7 +80,6 @@ export function prepareBrowserConfig(
78
80
79
81
82
- }
83
}
84
85
if (options.cordovaMock) {
0 commit comments