Skip to content

Commit

Permalink
Merge pull request #1697 from embroider-build/public-assets-hide-base…
Browse files Browse the repository at this point in the history
…-path

Hide base path from public URL of rollup-public-assets
  • Loading branch information
ef4 committed Dec 11, 2023
2 parents b33cb4c + ee9b6b2 commit 0dc2c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/addon-dev/src/rollup-public-assets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function publicAssets(
});
const publicAssets: Record<string, string> = filenames.reduce(
(acc: Record<string, string>, v): Record<string, string> => {
acc[`./${path}/${v}`] = ['/', pkg.name, '/', path, '/', v].join('');
acc[`./${path}/${v}`] = ['/', pkg.name, '/', v].join('');
return acc;
},
{}
Expand Down

0 comments on commit 0dc2c93

Please sign in to comment.