Commiting to switch to a different orm

This commit is contained in:
2024-11-14 01:05:53 +00:00
parent d1200eea74
commit 3c1a277b37
23 changed files with 1867 additions and 3829 deletions

View File

@@ -6,19 +6,26 @@ const nextConfig = {
pageExtensions: ["js", "jsx", "md", "mdx", "ts", "tsx"],
experimental: {
reactCompiler: true,
ppr: true,
ppr: "incremental",
},
serverExternalPackages: ["typeorm"],
serverExternalPackages: ["typeorm", "better-sqlite3"],
reactStrictMode: true,
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "fly.storage.tigris.dev"
hostname: "fly.storage.tigris.dev",
},
],
},
typescript: {
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
};
const millionConfig = {
@@ -30,4 +37,5 @@ const withMDX = createMDX({
// Add markdown plugins here, as desired
});
export default withMDX(million.next(nextConfig, millionConfig));
// export default withMDX(million.next(nextConfig, millionConfig));
export default withMDX(nextConfig);