banatie-service/apps/admin/next.config.js

16 lines
361 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