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
Right now we have entrypoints that have the following format: bud/view/{controller}/\_{action}.{ext}, so for bud/view/index.svelte, the entrypoint would look like bud/view/_index.svelte.
This was nice for understanding the mapping, but doesn't play well with tools that use the extension to determine the content-type, since those served svelte files are actually javascript.
Let's change this, perhaps:
.bud/view/index.entry.svelte.js: entrypoint for view/index.svelte (includes hydration + event sourcing)
Right now we have entrypoints that have the following format:
bud/view/{controller}/\_{action}.{ext}
, so forbud/view/index.svelte
, the entrypoint would look likebud/view/_index.svelte
.This was nice for understanding the mapping, but doesn't play well with tools that use the extension to determine the content-type, since those served svelte files are actually javascript.
Let's change this, perhaps:
.bud/view/index.entry.svelte.js
: entrypoint forview/index.svelte
(includes hydration + event sourcing).bud/view/index.svelte.js
: compiledview/index.svelte
componentThe text was updated successfully, but these errors were encountered: