Nicholai 16cee69250 __Admin dashboard scaffolded with D1 database and R2 file uploads__
This commit implements the core admin dashboard functionality including NextAuth authentication, Cloudflare D1 database integration with complete schema, and Cloudflare R2 file upload system for portfolio images. Features include artist management, appointment scheduling, and data migration capabilities.
2025-09-17 16:08:34 -06:00

164 lines
4.8 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
0 && (module.exports = {
defaultConfig: null,
normalizeConfig: null
});
function _export(target, all) {
for(var name in all)Object.defineProperty(target, name, {
enumerable: true,
get: all[name]
});
}
_export(exports, {
defaultConfig: function() {
return defaultConfig;
},
normalizeConfig: function() {
return normalizeConfig;
}
});
const _os = /*#__PURE__*/ _interop_require_default(require("os"));
const _imageconfig = require("../shared/lib/image-config");
function _interop_require_default(obj) {
return obj && obj.__esModule ? obj : {
default: obj
};
}
const defaultConfig = {
env: {},
webpack: null,
eslint: {
ignoreDuringBuilds: false
},
typescript: {
ignoreBuildErrors: false,
tsconfigPath: "tsconfig.json"
},
distDir: ".next",
cleanDistDir: true,
assetPrefix: "",
cacheHandler: undefined,
// default to 50MB limit
cacheMaxMemorySize: 50 * 1024 * 1024,
configOrigin: "default",
useFileSystemPublicRoutes: true,
generateBuildId: ()=>null,
generateEtags: true,
pageExtensions: [
"tsx",
"ts",
"jsx",
"js"
],
poweredByHeader: true,
compress: true,
analyticsId: process.env.VERCEL_ANALYTICS_ID || "",
images: _imageconfig.imageConfigDefault,
devIndicators: {
buildActivity: true,
buildActivityPosition: "bottom-right"
},
onDemandEntries: {
maxInactiveAge: 60 * 1000,
pagesBufferLength: 5
},
amp: {
canonicalBase: ""
},
basePath: "",
sassOptions: {},
trailingSlash: false,
i18n: null,
productionBrowserSourceMaps: false,
optimizeFonts: true,
excludeDefaultMomentLocales: true,
serverRuntimeConfig: {},
publicRuntimeConfig: {},
reactProductionProfiling: false,
reactStrictMode: null,
httpAgentOptions: {
keepAlive: true
},
outputFileTracing: true,
staticPageGenerationTimeout: 60,
swcMinify: true,
output: !!process.env.NEXT_PRIVATE_STANDALONE ? "standalone" : undefined,
modularizeImports: undefined,
experimental: {
multiZoneDraftMode: false,
prerenderEarlyExit: false,
serverMinification: true,
serverSourceMaps: false,
linkNoTouchStart: false,
caseSensitiveRoutes: false,
appDocumentPreloading: undefined,
preloadEntriesOnStart: undefined,
clientRouterFilter: true,
clientRouterFilterRedirects: false,
fetchCacheKeyPrefix: "",
middlewarePrefetch: "flexible",
optimisticClientCache: true,
swrDelta: undefined,
manualClientBasePath: false,
cpus: Math.max(1, (Number(process.env.CIRCLE_NODE_TOTAL) || (_os.default.cpus() || {
length: 1
}).length) - 1),
memoryBasedWorkersCount: false,
isrFlushToDisk: true,
workerThreads: false,
proxyTimeout: undefined,
optimizeCss: false,
nextScriptWorkers: false,
scrollRestoration: false,
externalDir: false,
disableOptimizedLoading: false,
gzipSize: true,
craCompat: false,
esmExternals: true,
fullySpecified: false,
outputFileTracingRoot: process.env.NEXT_PRIVATE_OUTPUT_TRACE_ROOT || "",
swcTraceProfiling: false,
forceSwcTransforms: false,
swcPlugins: undefined,
largePageDataBytes: 128 * 1000,
disablePostcssPresetEnv: undefined,
amp: undefined,
urlImports: undefined,
adjustFontFallbacks: false,
adjustFontFallbacksWithSizeAdjust: false,
turbo: undefined,
turbotrace: undefined,
typedRoutes: false,
instrumentationHook: false,
bundlePagesExternals: false,
parallelServerCompiles: false,
parallelServerBuildTraces: false,
ppr: // TODO: remove once we've made PPR default
// If we're testing, and the `__NEXT_EXPERIMENTAL_PPR` environment variable
// has been set to `true`, enable the experimental PPR feature so long as it
// wasn't explicitly disabled in the config.
process.env.__NEXT_TEST_MODE && process.env.__NEXT_EXPERIMENTAL_PPR === "true" ? true : false,
webpackBuildWorker: undefined,
missingSuspenseWithCSRBailout: true,
optimizeServerReact: true,
useEarlyImport: false,
staleTimes: {
dynamic: 30,
static: 300
}
}
};
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;
}
//# sourceMappingURL=config-shared.js.map