pronounsfu/frontend/next.config.js

16 lines
306 B
JavaScript
Raw Normal View History

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
2022-08-16 18:04:06 -07:00
async rewrites() {
return [
{
source: "/api/:path*",
destination: "http://localhost:8080/:path*", // Proxy to Backend
},
];
},
};
2022-08-16 18:04:06 -07:00
module.exports = nextConfig;