@theguild/components
Version:
121 lines (118 loc) • 3.63 kB
JavaScript
// src/next.config.ts
import withVideos from "next-videos";
import nextra from "nextra";
import remarkMdxDisableExplicitJsx from "remark-mdx-disable-explicit-jsx";
import nextBundleAnalyzer from "@next/bundle-analyzer";
import { remarkNpm2Yarn } from "@theguild/remark-npm2yarn";
// src/underscore-redirects.ts
import { writeFile } from "fs/promises";
import { join } from "path";
var RunPromiseWebpackPlugin = class {
constructor(asyncHook) {
this.asyncHook = asyncHook;
}
apply(compiler) {
compiler.hooks.beforeCompile.tapPromise("RunPromiseWebpackPlugin", this.asyncHook);
}
};
var isWarningPrinted = false;
function applyUnderscoreRedirects(config, meta) {
config.plugins.push(
new RunPromiseWebpackPlugin(async () => {
const outDir = meta.dir;
const outFile = join(outDir, "./public/_redirects");
try {
const redirects = meta.config.redirects ? Array.isArray(meta.config.redirects) ? meta.config.redirects : await meta.config.redirects() : [];
if (redirects.length === 0) {
if (!isWarningPrinted) {
console.warn('[guild-docs] No redirects defined, no "_redirect" file is created!');
isWarningPrinted = true;
}
return;
}
const redirectsTxt = redirects.map((r) => `${r.source} ${r.destination} ${r.permanent ? 301 : 302}`).join("\n");
await writeFile(outFile, redirectsTxt);
} catch (error) {
throw new Error(
`Failed to generate "_redirects" file during build: ${error.message}`
);
}
})
);
}
// src/next.config.ts
var defaultRemarkPlugins = [
[
// replace <iframe />, <video />, <source /> tags in MDX
remarkMdxDisableExplicitJsx,
{ whiteList: ["iframe", "video", "source"] }
],
[
remarkNpm2Yarn,
{
packageName: "@theguild/components",
tabNamesProp: "items",
storageKey: "selectedPackageManager"
}
]
];
var withGuildDocs = ({
themeConfig = "./theme.config.tsx",
transformPageOpts,
...nextConfig
} = {}) => {
if (nextConfig.webpack?.toString().includes("applyUnderscoreRedirects")) {
throw new Error(
"`applyUnderscoreRedirects` in `nextConfig.webpack` was already configured, remove it from your config"
);
}
const withBundleAnalyzer = nextBundleAnalyzer({
enabled: process.env.ANALYZE === "true"
});
const withNextra = nextra({
themeConfig,
theme: "nextra-theme-docs",
defaultShowCopyCode: true,
transformPageOpts,
mdxOptions: {
remarkPlugins: defaultRemarkPlugins
},
flexsearch: false
});
const siteUrl = process.env.SITE_URL || "";
return withBundleAnalyzer(
withVideos(
withNextra({
reactStrictMode: true,
poweredByHeader: false,
// TODO: Enable after https://github.com/vercel/next.js/issues/40750 will be fixed
// swcMinify: true,
basePath: process.env.NEXT_BASE_PATH,
...nextConfig,
env: {
SITE_URL: siteUrl,
...nextConfig.env
},
webpack(config, meta) {
applyUnderscoreRedirects(config, meta);
return nextConfig.webpack?.(config, meta) || config;
},
experimental: {
// TODO: Provoke white flash ⚪️💥 on initial loading with dark theme
// optimizeCss: true,
newNextLinkBehavior: true,
...nextConfig.experimental
},
images: {
unoptimized: true,
// doesn't work with `next export`,
...nextConfig.images
}
})
)
);
};
export {
defaultRemarkPlugins,
withGuildDocs
};