Teabag/next.config.js

12 lines
224 B
JavaScript
Raw Permalink Normal View History

2023-10-22 13:24:10 +00:00
const path = require('path');
2023-10-22 13:22:14 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
2023-10-22 13:24:10 +00:00
sassOptions: {
includePaths: [path.join(__dirname, 'styles')],
}
2023-10-22 13:50:28 +00:00
};
2023-10-22 13:22:14 +00:00
2023-10-22 13:50:28 +00:00
module.exports = nextConfig;