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 ef7bb3f commit d651cb9Copy full SHA for d651cb9
src/project/project-context.ts
@@ -657,7 +657,10 @@ async function resolveProjectExtension(
657
// TODO make this a deprecation warning
658
function migrateProjectConfig(projectConfig: ProjectConfig) {
659
const kSite = "site";
660
- if (projectConfig[kSite] === undefined) {
+ if (
661
+ projectConfig.project[kProjectType] !== kSite &&
662
+ projectConfig[kSite] === undefined
663
+ ) {
664
return projectConfig;
665
}
666
0 commit comments