fix: wrong public path for stable env (#7676)

This commit is contained in:
forehalo
2024-07-31 07:19:32 +00:00
parent 280e24934a
commit c6d4985cba

View File

@@ -80,7 +80,7 @@ export const getPublicPath = (buildFlags: BuildFlags) => {
return `https://dev.affineassets.com/`;
} else if (BUILD_TYPE === 'beta') {
return `https://beta.affineassets.com/`;
} else if (BUILD_TYPE === 'prod') {
} else if (BUILD_TYPE === 'stable') {
return `https://prod.affineassets.com/`;
}
return publicPath;