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
The config file is currently loaded with Date.now() as a cache-busting parameter. If mtime were instead used then SvelteKit could load the config with the same cache-busting parameter without us having to pass the config around which would simplify some APIs (see sveltejs/kit#5094).
Describe the proposed solution
Use mtime
Alternatives considered
the user imports the config
split the config file between svelte.config.js and vite.config.js
plugin intercommunication (though I don't think this would actually work)
await plugin creation function
Importance
would make my life easier
The text was updated successfully, but these errors were encountered:
Describe the problem
The config file is currently loaded with
Date.now()
as a cache-busting parameter. Ifmtime
were instead used then SvelteKit could load the config with the same cache-busting parameter without us having to pass the config around which would simplify some APIs (see sveltejs/kit#5094).Describe the proposed solution
Use
mtime
Alternatives considered
Importance
would make my life easier
The text was updated successfully, but these errors were encountered: