Add initial implementation of database connection, authentication, and API routes

This commit is contained in:
2025-02-21 23:14:12 +01:00
parent 1db7bde68a
commit 0957fcf57e
164 changed files with 24917 additions and 471 deletions

View File

@ -1,4 +1,16 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
images: {
localPatterns: [
{
pathname: '/assets/images/**',
search: '',
},
],
},
experimental: {
webpackMemoryOptimizations: true,
}
};
export default nextConfig;