This commit is contained in:
2024-01-27 15:40:32 +01:00
commit 5b02c1da03
38 changed files with 7960 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
const path = require('path');
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
distDir: 'out',
sassOptions: {
includePaths: [path.join(__dirname, 'styles')],
},
};
module.exports = nextConfig;