website/next.config.js

12 lines
244 B
JavaScript
Raw Normal View History

2024-04-20 14:56:46 +00:00
const path = require('path');
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
reactStrictMode: true,
sassOptions: {
includePaths: [ path.join(__dirname, 'styles') ]
}
};
module.exports = nextConfig;