13 lines
298 B
JavaScript
13 lines
298 B
JavaScript
import path from 'path';
|
|
import { fileURLToPath } from 'url';
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
outputFileTracingRoot: path.join(__dirname, '..'),
|
|
};
|
|
|
|
export default nextConfig;
|