14 lines
274 B
JavaScript
14 lines
274 B
JavaScript
import path from 'node:path'
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverComponentsExternalPackages: ['pino'],
|
|
},
|
|
sassOptions: {
|
|
includePaths: [path.join(path.resolve('.'), 'styles')],
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|