Add initial implementation of database connection, authentication, and API routes
This commit is contained in:
@ -1,4 +1,16 @@
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {};
|
||||
const nextConfig = {
|
||||
images: {
|
||||
localPatterns: [
|
||||
{
|
||||
pathname: '/assets/images/**',
|
||||
search: '',
|
||||
},
|
||||
],
|
||||
},
|
||||
experimental: {
|
||||
webpackMemoryOptimizations: true,
|
||||
}
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
|
Reference in New Issue
Block a user