next.js/test/e2e/app-dir/next-config-ts/import-alias-paths-with-baseurl/next.config.ts
next.config.ts13 lines188 B
import type { NextConfig } from 'next'
import { foo } from '@/foo'
import { bar } from 'bar'

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

export default nextConfig
Quest for Codev2.0.0
/
SIGN IN