11 lines
222 B
JavaScript
11 lines
222 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
basePath: '/marketplace',
|
|
images: {
|
|
domains: ['res.cloudinary.com'],
|
|
},
|
|
transpilePackages: ['@rentaldrivego/types'],
|
|
}
|
|
|
|
module.exports = nextConfig
|