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 375bc2e commit 3e45821Copy full SHA for 3e45821
packages/webpack5/src/platforms/ios.ts
@@ -10,7 +10,8 @@ function sanitizeName(appName: string): string {
10
}
11
function getDistPath() {
12
const appName = sanitizeName(basename(getProjectRootPath()));
13
- return `platforms/ios/${appName}/app`;
+ const platform = process.env.USER_PROJECT_PLATFORMS_IOS ? process.env.USER_PROJECT_PLATFORMS_IOS : "platforms/ios"
14
+ return `${platform}/${appName}/app`;
15
16
17
const iOSPlatform: INativeScriptPlatform = {
0 commit comments