Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
yusukebe committed Aug 28, 2024
1 parent 10d78d0 commit c5f6e75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/dev-server/src/adapter/node.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Adapter } from "../types"
import type { Adapter } from '../types'
export const nodeAdapter = (): Adapter => {
if (typeof globalThis.navigator === 'undefined') {
// @ts-expect-error not typed well
Expand All @@ -12,8 +12,8 @@ export const nodeAdapter = (): Adapter => {
})
}
return {
env: process.env
env: process.env,
}
}

export default nodeAdapter;
export default nodeAdapter

0 comments on commit c5f6e75

Please sign in to comment.