fix: update import paths for components and utilities to relative paths

This commit is contained in:
2025-10-17 22:41:52 +02:00
parent 02643e3702
commit 337b07f3c5
33 changed files with 3050 additions and 70 deletions

View File

@@ -1,7 +1,11 @@
import type { NextConfig } from 'next';
import path from 'path';
const nextConfig: NextConfig = {
/* config options here */
webpack: (config) => {
config.resolve.alias['@'] = path.resolve(__dirname);
return config;
},
};
export default nextConfig;