Files
formbricks-formbricks/apps/formbricks-com/next.config.mjs
2022-11-23 11:11:33 +01:00

55 lines
1.4 KiB
JavaScript

import nextMDX from "@next/mdx";
import { withPlausibleProxy } from "next-plausible";
import remarkGfm from "remark-gfm";
import rehypePrism from "@mapbox/rehype-prism";
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
pageExtensions: ["ts", "tsx", "js", "jsx", "md", "mdx"],
async redirects() {
return [
{
source: "/discord",
destination: "https://discord.gg/3YFcABF2Ts",
permanent: false,
},
{
source: "/roadmap",
destination: "https://github.com/orgs/formbricks/projects/1",
permanent: false,
},
{
source: "/github",
destination: "https://github.com/formbricks/formbricks",
permanent: false,
},
{
source: "/privacy",
destination: "/privacy-policy",
permanent: false,
},
{
source: "/form-hq",
destination: "/formbricks-hq",
permanent: false,
},
];
},
};
const withMDX = nextMDX({
extension: /\.mdx?$/,
options: {
// If you use remark-gfm, you'll need to use next.config.mjs
// as the package is ESM only
// https://github.com/remarkjs/remark-gfm#install
remarkPlugins: [remarkGfm],
rehypePlugins: [rehypePrism],
// If you use `MDXProvider`, uncomment the following line.
// providerImportSource: "@mdx-js/react",
},
});
export default withPlausibleProxy({ customDomain: "https://plausible.formbricks.com" })(withMDX(nextConfig));