f0b52c6ab7
- Bump Docker SDK, downgrade otel deps for Go 1.24 compatibility - Fix duplicate i18n import in InstanceCard - Fix SvelteKit prerender/strict config for SPA build - Update Dockerfile with GOTOOLCHAIN=auto - Generate package-lock.json and go.sum WIP: still resolving Go 1.24 vs otel transitive dep versions
14 lines
516 B
JavaScript
14 lines
516 B
JavaScript
/**
|
|
* A fake asset path used in `vite dev` and `vite preview`, so that we can
|
|
* serve local assets while verifying that requests are correctly prefixed
|
|
*/
|
|
export const SVELTE_KIT_ASSETS = '/_svelte_kit_assets';
|
|
|
|
export const GENERATED_COMMENT = '// this file is generated — do not edit it\n';
|
|
|
|
export const ENDPOINT_METHODS = ['GET', 'POST', 'PUT', 'PATCH', 'DELETE', 'OPTIONS', 'HEAD'];
|
|
|
|
export const MUTATIVE_METHODS = ['POST', 'PUT', 'PATCH', 'DELETE'];
|
|
|
|
export const PAGE_METHODS = ['GET', 'POST', 'HEAD'];
|