Skip to content

Commit

Permalink
Merge pull request #1447 from embroider-build/fix-image-corruption
Browse files Browse the repository at this point in the history
fix keepAssets corrupting image files
  • Loading branch information
mansona authored May 24, 2023
2 parents 64bbe47 + 2d54951 commit 9f46f5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/addon-dev/src/rollup-keep-assets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function keepAssets({
this.emitFile({
type: 'asset',
fileName: name,
source: readFileSync(join(from, name), 'utf8'),
source: readFileSync(join(from, name)),
});
}
},
Expand Down

0 comments on commit 9f46f5e

Please sign in to comment.