File tree 1 file changed +0
-15
lines changed
1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ import getPort from 'get-port'
3
3
import { getDeployStore } from '@netlify/blobs'
4
4
import { BlobsServer } from '@netlify/blobs/server'
5
5
import type { NetlifyPluginUtils } from '@netlify/build'
6
- import IncrementalCache from 'next/dist/server/lib/incremental-cache/index.js'
7
6
import { Buffer } from 'node:buffer'
8
7
import { mkdtemp } from 'node:fs/promises'
9
8
import { tmpdir } from 'node:os'
@@ -12,20 +11,6 @@ import { assert, vi } from 'vitest'
12
11
import { BLOB_TOKEN } from './constants'
13
12
import { type FixtureTestContext } from './contexts'
14
13
15
- /**
16
- * Uses next.js incremental cache to compute the same cache key for a URL that is automatically generated
17
- * This is needed for mocking out fetch calls to test them
18
- */
19
- export const getFetchCacheKey = async ( url : string ) => {
20
- const incCache = new IncrementalCache . IncrementalCache ( {
21
- requestHeaders : { } ,
22
- getPrerenderManifest : ( ) => ( { } ) ,
23
- } as any )
24
-
25
- const key = await incCache . fetchCacheKey ( url )
26
- return key
27
- }
28
-
29
14
/**
30
15
* Generates a 24char deploy ID (this is validated in the blob storage so we cant use a uuidv4)
31
16
* @returns
You can’t perform that action at this time.
0 commit comments