Files
twimg-frontend/next.config.js
2025-07-13 20:58:21 -04:00

9 lines
191 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
env: {
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL,
},
};
module.exports = nextConfig;