mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-07 06:12:31 -06:00
Co-authored-by: knugget <johannes@knugget.de> Co-authored-by: Johannes <72809645+jobenjada@users.noreply.github.com>
55 lines
1.4 KiB
JavaScript
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));
|