Files
mta-sign/mta-sign-ui/next.config.js
2023-07-10 20:51:10 -04:00

17 lines
440 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
// rewrites: async () => {
// return [
// {
// source: '/api/:path*',
// destination:
// process.env.NODE_ENV === 'development'
// ? 'http://127.0.0.1:8000/api/:path*'
// : '/api/',
// },
// ]
// },
}
module.exports = nextConfig