frozeman / meteor-build-client

A tool to bundle the client part of a Meteor app.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UTF-8 encoding?

JohnRodney opened this issue · comments

Hey I'm working with this repository to export the meteor client of an app and inject it into a dom using a chrome extension. The build 2983439aeeb382.js file is throwing an error that it is not utf-8 encoded when trying to inject as a content script.

Is this a side effect of the meteor build itself or something I can be in control of with this build?

Thanks for your time.

I think the build is just missing the <meta charset="utf-8" /> in the <head> section. Just add it manually after you have built and should be fine.

This issue was addressed in one of previous releases, now if no custom <head> element is found default <head><meta charset="utf-8"></head> is injected into generated index.html

Feel free to reopen it in case if the issue is still persists on your end.

Hello @JohnRodney,

Thank you for pointing this out!
Implemented as part of v1.0.0, and published last night to NPM. Please, give it a try and let me know if there's any issues.