Files

13 lines
291 B
JavaScript
Raw Permalink Normal View History

const { NextConfig } = require('next');
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
reactStrictMode: true,
env: {
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:8000/api/v1',
},
};
module.exports = nextConfig;