16 lines
354 B
JavaScript
16 lines
354 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, '..'),
|
|
sassOptions: {
|
|
includePaths: ['src/styles'],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|