mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-05-08 10:24:48 +02:00
10 lines
189 B
TypeScript
10 lines
189 B
TypeScript
import baseConfig from './next.config';
|
|
import type { NextConfig } from 'next';
|
|
|
|
const peerConfig: NextConfig = {
|
|
...baseConfig,
|
|
distDir: '.next-peer-b',
|
|
};
|
|
|
|
export default peerConfig;
|