123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.normalizeConfig = normalizeConfig;
- exports.isServerRuntime = isServerRuntime;
- exports.validateConfig = validateConfig;
- exports.defaultConfig = void 0;
- var _os = _interopRequireDefault(require("os"));
- var _imageConfig = require("../shared/lib/image-config");
- function _interopRequireDefault(obj) {
- return obj && obj.__esModule ? obj : {
- default: obj
- };
- }
- const defaultConfig = {
- env: {},
- webpack: null,
- webpackDevMiddleware: null,
- eslint: {
- ignoreDuringBuilds: false
- },
- typescript: {
- ignoreBuildErrors: false,
- tsconfigPath: "tsconfig.json"
- },
- distDir: ".next",
- cleanDistDir: true,
- assetPrefix: "",
- configOrigin: "default",
- useFileSystemPublicRoutes: true,
- generateBuildId: ()=>null,
- generateEtags: true,
- pageExtensions: [
- "tsx",
- "ts",
- "jsx",
- "js"
- ],
- target: "server",
- poweredByHeader: true,
- compress: true,
- analyticsId: process.env.VERCEL_ANALYTICS_ID || "",
- images: _imageConfig.imageConfigDefault,
- devIndicators: {
- buildActivity: true,
- buildActivityPosition: "bottom-right"
- },
- onDemandEntries: {
- maxInactiveAge: 15 * 1000,
- pagesBufferLength: 2
- },
- amp: {
- canonicalBase: ""
- },
- basePath: "",
- sassOptions: {},
- trailingSlash: false,
- i18n: null,
- productionBrowserSourceMaps: false,
- optimizeFonts: true,
- webpack5: undefined,
- excludeDefaultMomentLocales: true,
- serverRuntimeConfig: {},
- publicRuntimeConfig: {},
- reactStrictMode: false,
- httpAgentOptions: {
- keepAlive: true
- },
- outputFileTracing: true,
- staticPageGenerationTimeout: 60,
- swcMinify: false,
- output: !!process.env.NEXT_PRIVATE_STANDALONE ? "standalone" : undefined,
- experimental: {
- optimisticClientCache: true,
- runtime: undefined,
- manualClientBasePath: false,
- // TODO: change default in next major release (current v12.1.5)
- legacyBrowsers: true,
- browsersListForSwc: false,
- // TODO: change default in next major release (current v12.1.5)
- newNextLinkBehavior: false,
- cpus: Math.max(1, (Number(process.env.CIRCLE_NODE_TOTAL) || (_os.default.cpus() || {
- length: 1
- }).length) - 1),
- sharedPool: true,
- profiling: false,
- isrFlushToDisk: true,
- workerThreads: false,
- pageEnv: false,
- proxyTimeout: undefined,
- optimizeCss: false,
- nextScriptWorkers: false,
- scrollRestoration: false,
- externalDir: false,
- disableOptimizedLoading: false,
- gzipSize: true,
- swcFileReading: true,
- craCompat: false,
- esmExternals: true,
- appDir: false,
- // default to 50MB limit
- isrMemoryCacheSize: 50 * 1024 * 1024,
- incrementalCacheHandlerPath: undefined,
- serverComponents: false,
- fullySpecified: false,
- outputFileTracingRoot: process.env.NEXT_PRIVATE_OUTPUT_TRACE_ROOT || "",
- swcTraceProfiling: false,
- forceSwcTransforms: false,
- swcPlugins: undefined,
- swcMinifyDebugOptions: undefined,
- largePageDataBytes: 128 * 1000,
- disablePostcssPresetEnv: undefined,
- amp: undefined,
- urlImports: undefined,
- modularizeImports: undefined,
- adjustFontFallbacks: false
- }
- };
- exports.defaultConfig = defaultConfig;
- async function normalizeConfig(phase, config) {
- if (typeof config === "function") {
- config = config(phase, {
- defaultConfig
- });
- }
- // Support `new Promise` and `async () =>` as return values of the config export
- return await config;
- }
- function isServerRuntime(value) {
- return value === undefined || value === "nodejs" || value === "experimental-edge";
- }
- function validateConfig(userConfig) {
- const configValidator = require("next/dist/next-config-validate.js");
- configValidator(userConfig);
- return {
- errors: configValidator.errors
- };
- }
- //# sourceMappingURL=config-shared.js.map
|