12 lines
195 B
JavaScript
12 lines
195 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
domains: [
|
|
"uploadthing.com",
|
|
"utfs.io"
|
|
]
|
|
}
|
|
}
|
|
|
|
module.exports = nextConfig
|