few changes

This commit is contained in:
2025-08-18 14:50:38 -05:00
parent 447af46fa0
commit 5fbd696ad0
4 changed files with 36 additions and 62 deletions

View File

@@ -1,8 +1,12 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
// hier können andere gültige experimentelle Optionen stehen, falls nötig
},
};
// next.config.js
const path = require('path');
const withFlowbiteReact = require('flowbite-react/plugin/nextjs');
module.exports = nextConfig;
const nextConfig = {
output: 'export',
images: { unoptimized: true },
webpack: (config) => {
config.resolve.alias['@'] = path.resolve(process.cwd());
return config;
},
};