Skip to content

Commit

Permalink
feat: fixing approot for build settings
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonNotJson committed Sep 12, 2023
1 parent 5bc8532 commit 28ae92d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/configs/amplify/build-setting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const microAppBuildSpec = (name: string) =>
},
],
},
appRoot: name,
appRoot: `apps/${name}`,
},
],
});
Expand All @@ -79,7 +79,7 @@ export const microAppDevBuildSpec = (name: string) =>
},
],
},
appRoot: name,
appRoot: `apps/${name}`,
},
],
});

0 comments on commit 28ae92d

Please sign in to comment.