Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk committed Aug 7, 2022
1 parent e2a9e08 commit 10a6f67
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/next/server/config-shared.ts
Expand Up @@ -7,7 +7,7 @@ import {
imageConfigDefault,
RemotePattern,
} from '../shared/lib/image-config'
import { ServerRuntime } from '../types'
import { ServerRuntime } from 'next/types'

export type NextConfigComplete = Required<NextConfig> & {
images: Required<ImageConfigComplete>
Expand Down
2 changes: 1 addition & 1 deletion packages/next/server/render.tsx
Expand Up @@ -23,7 +23,7 @@ import type {
GetStaticProps,
PreviewData,
ServerRuntime,
} from '../types'
} from 'next/types'
import type { UnwrapPromise } from '../lib/coalesced-function'
import type { ReactReadableStream } from './node-web-streams-helper'

Expand Down
2 changes: 1 addition & 1 deletion packages/next/shared/lib/html-context.ts
@@ -1,5 +1,5 @@
import type { BuildManifest } from '../../server/get-page-files'
import type { ServerRuntime } from '../../types'
import type { ServerRuntime } from 'next/types'
import type { NEXT_DATA } from './utils'

import { createContext } from 'react'
Expand Down

0 comments on commit 10a6f67

Please sign in to comment.