0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-04-07 23:41:43 -05:00

[ci] format

This commit is contained in:
Florian Lefebvre 2025-03-21 10:03:15 +00:00 committed by astrobot-houston
parent 9721f4a69f
commit b67e983052
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
/// <reference types="@cloudflare/workers-types" />
/// <reference types="@cloudflare/workers-types" />

View file

@ -1,3 +1,4 @@
import { env as globalEnv } from 'cloudflare:workers';
import type {
CacheStorage as CLOUDFLARE_CACHESTORAGE,
Request as CLOUDFLARE_REQUEST,
@ -6,7 +7,6 @@ import type {
import type { SSRManifest } from 'astro';
import { App } from 'astro/app';
import { setGetEnv } from 'astro/env/setup';
import { env as globalEnv } from 'cloudflare:workers';
import { createGetEnv } from '../utils/env.js';
setGetEnv(createGetEnv(globalEnv as Env));