Files
forum-frontend/next.config.js
T
2024-01-27 15:40:32 +01:00

13 lines
250 B
JavaScript

const path = require('path');
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
distDir: 'out',
sassOptions: {
includePaths: [path.join(__dirname, 'styles')],
},
};
module.exports = nextConfig;