15 lines
280 B
JavaScript
15 lines
280 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
basePath: '/v3',
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: process.env.HOST,
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|