MCPcopy Create free account
hub / github.com/editablejs/editable / nextConfig

Function nextConfig

apps/docs/next.config.js:41–58  ·  view source on GitHub ↗
(phase, { defaultConfig })

Source from the content-addressed store, hash-verified

39 * @type {import('next').NextConfig}
40 */
41const nextConfig = (phase, { defaultConfig }) => {
42 const config = {
43 ...defaultConfig,
44 ...baseConfig,
45 }
46 if (phase === PHASE_DEVELOPMENT_SERVER) {
47 return config
48 }
49
50 return {
51 ...config,
52 output: 'standalone',
53 experimental: {
54 ...baseConfig.experimental,
55 outputFileTracingRoot: path.join(__dirname, '../../'),
56 },
57 }
58}
59
60module.exports = nextConfig

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…