29 lines
600 B
JavaScript
29 lines
600 B
JavaScript
import dotenv from "dotenv";
|
|
import bundleAnalyzer from "@next/bundle-analyzer";
|
|
|
|
dotenv.config();
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
outputStandalone: true,
|
|
esmExternals: true,
|
|
},
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: "/server-api/:path*",
|
|
destination: `${process.env.API_URL}/:path*`,
|
|
},
|
|
{
|
|
source: "/file/raw/:id",
|
|
destination: `/api/raw/:id`,
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
export default bundleAnalyzer({ enabled: process.env.ANALYZE === "true" })(
|
|
nextConfig
|
|
);
|