Initial commit: Todo app with Jira-style board

This commit is contained in:
PhongMacbook
2025-12-16 23:13:06 +07:00
commit fecae546e9
44 changed files with 6671 additions and 0 deletions

17
next.config.js Normal file
View File

@@ -0,0 +1,17 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'lh3.googleusercontent.com',
},
{
protocol: 'https',
hostname: 'avatars.githubusercontent.com',
},
],
},
}
module.exports = nextConfig