forked from mirrors/pronouns.cc
28 lines
671 B
JavaScript
Executable file
28 lines
671 B
JavaScript
Executable file
const { withSentryConfig } = require("@sentry/nextjs");
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: "/api/:path*",
|
|
destination: "http://localhost:8080/:path*", // proxy to backend
|
|
},
|
|
{
|
|
source: "/media/:path*",
|
|
destination: "http://localhost:9000/pronouns.cc/:path*", // proxy to media server
|
|
}
|
|
];
|
|
},
|
|
sentry: {
|
|
hideSourceMaps: true,
|
|
},
|
|
};
|
|
|
|
const sentryWebpackPluginOptions = {
|
|
silent: true, // Suppresses all logs
|
|
};
|
|
|
|
module.exports = withSentryConfig(nextConfig, sentryWebpackPluginOptions);
|