next.config.d.ts 293 字节
Newer Older
1
declare type NextEnv = {
2
    PUBLIC_PATH: string;
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
    API_URL: string;
    DEFAULT_LANGUAGE: string;
    LANGUAGES: string[];
    LOCALE_PATH: string;
};

declare interface NextConfig {
    env: NextEnv;
}

const nextConfig: NextConfig;

export default nextConfig;

export const env: NextEnv;