diff --git a/content/docs/guides/(data-storage)/definitions/data-types.mdx b/content/docs/guides/(data-storage)/definitions/data-types.mdx index c7b65ea..0b2ff75 100644 --- a/content/docs/guides/(data-storage)/definitions/data-types.mdx +++ b/content/docs/guides/(data-storage)/definitions/data-types.mdx @@ -1,6 +1,6 @@ --- title: "Data types" -slug: "data-types-1" +slug: "data-types" excerpt: "" hidden: false createdAt: "Fri Apr 05 2024 20:14:17 GMT+0000 (Coordinated Universal Time)" diff --git a/next.config.mjs b/next.config.mjs index fb151e3..0828b17 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,19 +1,11 @@ import { createMDX } from "fumadocs-mdx/next"; const withMDX = createMDX(); -const isGithubActions = process.env.GITHUB_ACTIONS || false; const isProduction = process.env.NODE_ENV === "production"; let assetPrefix = isProduction ? "./" : ""; let basePath = ""; -if (isGithubActions) { - const repo = process.env.GITHUB_REPOSITORY.replace(/.*?\//, ""); - - assetPrefix = `/${repo}/`; - basePath = `/${repo}`; -} - /** @type {import('next').NextConfig} */ const config = { reactStrictMode: true,