This commit is contained in:
2024-01-25 17:30:07 +01:00
parent 0188a7d27d
commit c3d803d02f
16 changed files with 663 additions and 358 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;