I have a bundle called web,
main module is called apps/web/web
web.js and web.css are placed to /assets/web.js and
/assets/web.css to load from there I set bundlePath. And then I want
to prevent web.css from loading by steal.
But could not achieve this with different variants:
- steal = {
- bundlesPath: "/assets",
- instantiated: {
- 'assets/web.css': null,
- 'bundles/web.css!': null,
- '/assets/web.css': null
- },
- }
What should I place in i
nstantiated to accomplish what I need?