You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Working on #12641 it's now (or when that is merged) already possible to include page bundled JS resources in a JS bundle built by ESBuild.
It's also possible to import CSS files, which will be bundled in a separate CSS file.
As of writing this, these CSS imports will be resolved in /assets only. But it would obviously be useful if we also could resolve relative to the content bundle itself:
Note to self: To get the dependency tracking working when running in server/watch mode, we cannot resolve on the file system; we need to resolve in Page.Resources.
The text was updated successfully, but these errors were encountered:
Working on #12641 it's now (or when that is merged) already possible to include page bundled JS resources in a JS bundle built by ESBuild.
It's also possible to import CSS files, which will be bundled in a separate CSS file.
As of writing this, these CSS imports will be resolved in
/assets
only. But it would obviously be useful if we also could resolve relative to the content bundle itself:Note to self: To get the dependency tracking working when running in server/watch mode, we cannot resolve on the file system; we need to resolve in
Page.Resources
.The text was updated successfully, but these errors were encountered: