17 lines
364 B
JavaScript
17 lines
364 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
appDir: true,
|
|
},
|
|
images: {
|
|
domains: ['localhost'],
|
|
},
|
|
env: {
|
|
BANATIE_API_URL: process.env.BANATIE_API_URL || 'http://localhost:3000',
|
|
POSTGRES_URL: process.env.POSTGRES_URL,
|
|
MINIO_ENDPOINT: process.env.MINIO_ENDPOINT,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|