🙋 feature request
Add a html bundleloader to allow html fragments to be loaded dynamically, like already possible with js or css content.
🤔 Expected Behavior
Add a html bundleloader to allow html fragments to be loaded dynamically, like already possible with js or css content.
import('view.html')
😯 Current Behavior
Currently the following exception is thrown as no html bundleloader is implemented yet:
bundleLoaders[type] is not a function
💁 Possible Solution
Add a new html bundleloader to the existing bundleloaders:
🔦 Context
I'm migrating a small spa from requirejs to parcel-bundler.
🙋 feature request
Add a html bundleloader to allow html fragments to be loaded dynamically, like already possible with js or css content.
🤔 Expected Behavior
Add a html bundleloader to allow html fragments to be loaded dynamically, like already possible with js or css content.
import('view.html')
😯 Current Behavior
Currently the following exception is thrown as no html bundleloader is implemented yet:
bundleLoaders[type] is not a function
💁 Possible Solution
Add a new html bundleloader to the existing bundleloaders:
parcel/src/builtins/bundle-loader.js
Line 24 in c8295de
🔦 Context
I'm migrating a small spa from requirejs to parcel-bundler.