We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When attempting to bundle html files for production, I get the following construct in the js file:
System.register("app/components/component.html", [], function (_export, _context) { "use strict"; return { setters: [], execute: function () { Object.defineProperty(exports, "__esModule", { value: true }); exports.__useDefault = true; exports.default = "<div>....</div>"; } }; });
Bundles get generated but they fail with an 'exports is not defined' error when referenced in the browser.
The dev/build config uses the typescript plugin and the text plugin, both working fine otherwise.
typescript plugin
text plugin
The text was updated successfully, but these errors were encountered:
This seems like a duplicate of systemjs/plugin-text#47, moving discussion there.
Sorry, something went wrong.
No branches or pull requests
When attempting to bundle html files for production, I get the following construct in the js file:
Bundles get generated but they fail with an 'exports is not defined' error when referenced in the browser.
The dev/build config uses the
typescript plugin
and thetext plugin
, both working fine otherwise.The text was updated successfully, but these errors were encountered: