website/next.config.js
2024-04-20 16:56:46 +02:00

12 lines
244 B
JavaScript

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