import type { NextConfig } from 'next'; import path from 'path'; const nextConfig: NextConfig = { /* config options here */ output: 'standalone', sassOptions: { includePaths: [path.resolve('./src/core/styles')], prependData: `@import "index.scss";`, }, }; export default nextConfig;