Skip to content

Commit

Permalink
revert #28863
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelangen committed Aug 13, 2024
1 parent cabe235 commit fe8bf33
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions code/builders/builder-vite/src/plugins/code-generator-plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,33 +70,33 @@ export function codeGeneratorPlugin(options: Options): Plugin {
},
resolveId(source) {
if (source === virtualFileId) {
return `\0${virtualFileId}`;
return `${virtualFileId}`;
}
if (source === iframePath) {
return iframeId;
}
if (source === virtualStoriesFile) {
return `\0${virtualStoriesFile}`;
return `${virtualStoriesFile}`;
}
if (source === virtualPreviewFile) {
return virtualPreviewFile;
}
if (source === virtualAddonSetupFile) {
return `\0${virtualAddonSetupFile}`;
return `${virtualAddonSetupFile}`;
}

return undefined;
},
async load(id, config) {
if (id === `\0${virtualStoriesFile}`) {
if (id === `${virtualStoriesFile}`) {
return generateImportFnScriptCode(options);
}

if (id === `\0${virtualAddonSetupFile}`) {
if (id === `${virtualAddonSetupFile}`) {
return generateAddonSetupCode();
}

if (id === `\0${virtualFileId}`) {
if (id === `${virtualFileId}`) {
return generateModernIframeScriptCode(options, projectRoot);
}

Expand Down

0 comments on commit fe8bf33

Please sign in to comment.