Burn it all to the ground and start with bun and a reorg

This commit is contained in:
2025-05-09 17:51:29 +01:00
parent 6eaf1d6b9f
commit 95f317fd75
82 changed files with 3001 additions and 13108 deletions

31
next.config.js Normal file
View File

@@ -0,0 +1,31 @@
/**
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
* for Docker builds.
*/
import "./src/env.js";
import createMDX from "@next/mdx";
/** @type {import("next").NextConfig} */
const config = {
pageExtensions: ["js", "jsx", "md", "mdx", "ts", "tsx"],
allowedDevOrigins: ["*.vscode.home.joemonk.co.uk"],
experimental: {
reactCompiler: true,
},
reactStrictMode: true,
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "fly.storage.tigris.dev",
},
],
},
};
const withMDX = createMDX({
// Add markdown plugins here, as desired
});
export default withMDX(config);