CoastalCommitsPastes/client/next.config.js

21 lines
371 B
JavaScript
Raw Normal View History

2022-03-08 02:09:30 -05:00
const dotenv = require("dotenv");
dotenv.config();
2022-03-06 19:46:59 -05:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
2022-03-07 23:42:44 -05:00
experimental: {
outputStandalone: true,
},
2022-03-06 19:46:59 -05:00
async rewrites() {
return [
{
source: "/api/:path*",
2022-03-08 02:09:30 -05:00
destination: `${process.env.API_URL}/:path*`,
2022-03-06 19:46:59 -05:00
},
];
},
};
module.exports = nextConfig;