Teabag/next.config.js
2023-10-22 15:50:28 +02:00

12 lines
224 B
JavaScript

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