16 lines
318 B
JavaScript
16 lines
318 B
JavaScript
import { dirname } from "path"
|
|
import { fileURLToPath } from "url"
|
|
|
|
const __dirname = dirname(fileURLToPath(import.meta.url))
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
outputFileTracingRoot: __dirname,
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|