14 lines
361 B
JavaScript
14 lines
361 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
env: {
|
|
SUPABASE_URL: process.env.NEXT_PUBLIC_SUPABASE_URL,
|
|
SUPABASE_ANON_KEY: process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY,
|
|
},
|
|
images: {
|
|
domains: ['images.unsplash.com', 'avatars.githubusercontent.com'],
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|