next.js/test/e2e/app-dir/next-config-ts-native-ts/top-level-await-esm/next.config.ts
next.config.ts13 lines191 B
import type { NextConfig } from 'next'
import { getFoo } from './get-foo.ts'

const foo = await getFoo()

const nextConfig: NextConfig = {
  env: {
    foo,
  },
}

export default nextConfig
Quest for Codev2.0.0
/
SIGN IN