JSPM does not load HTML files

I use the jspm bundle command to merge all my third-party libraries.

jspm bundle app.js - [**/*] ./scripts/bundles/vendor.js --inject --minify

The package is created as expected.
For some reason, when using the package, my HTML stops loading, and I have no idea why.
In my configuration file, I configured all HTML files to be loaded using a text plugin

meta: {"*.html": {loader: "text"}}

When using the option depcache(without a kit) or removing a package from the configuration file, everything works fine.
A text plugin is also included.

I am using jspm v0.16.45

+4
source share
1 answer

, , HTML , .
.

+2

Source: https://habr.com/ru/post/1652822/


All Articles