Skip to content

Commit

Permalink
chore: fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
feugy committed Aug 18, 2022
1 parent 262e424 commit 64a05d1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/next/build/analysis/get-page-static-info.ts
Expand Up @@ -9,15 +9,14 @@ import { promises as fs } from 'fs'
import { tryToParsePath } from '../../lib/try-to-parse-path'
import * as Log from '../output/log'
import { SERVER_RUNTIME } from '../../lib/constants'
import { ServerRuntime } from '../../types'

export interface MiddlewareConfig {
pathMatcher: RegExp // only relevant to middleware, not to edge APIs
allowDynamicGlobs: string[]
}

export interface PageStaticInfo {
runtime?: ServerRuntime
runtime?: 'nodejs' | 'experimental-edge' | undefined
ssg?: boolean
ssr?: boolean
middleware?: Partial<MiddlewareConfig>
Expand Down

0 comments on commit 64a05d1

Please sign in to comment.