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 430992f commit cf4defcCopy full SHA for cf4defc
src/client/deployMessages.ts
@@ -128,7 +128,8 @@ const getWebAppBundleContentFullName =
128
// Normalize paths to ensure relative() works correctly on Windows
129
const normalizedContent = component.content.split(sep).join(posix.sep);
130
const normalizedFilePath = filePath.split(sep).join(posix.sep);
131
- return posix.relative(normalizedContent, normalizedFilePath);
+ const relPath = posix.relative(normalizedContent, normalizedFilePath);
132
+ return posix.join(component.fullName, relPath);
133
};
134
135
/**
0 commit comments