mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-05 10:36:06 -06:00
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
import nextMDX from "@next/mdx";
|
|
import { withPlausibleProxy } from "next-plausible";
|
|
import remarkGfm from "remark-gfm";
|
|
|
|
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,
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
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: [],
|
|
// If you use `MDXProvider`, uncomment the following line.
|
|
// providerImportSource: "@mdx-js/react",
|
|
},
|
|
});
|
|
|
|
export default withPlausibleProxy({ customDomain: "https://plausible.formbricks.com" })(withMDX(nextConfig));
|