temp workaround: remove use of get static prop

This commit is contained in:
Maidul Islam
2023-10-16 15:03:55 +01:00
parent abe1f54aab
commit e5347719c3
2 changed files with 20 additions and 21 deletions

View File

@@ -212,11 +212,10 @@ const main = async () => {
app.use("/api", healthCheck);
if (process.env.NODE_ENV == "production") {
const dir = path.join(__dirname, "../frontend-build");
process.chdir(dir);
const nextJsBuildPath = path.join(__dirname, "../frontend-build");
const nextApp = next({
dev: false,
dir
dir: nextJsBuildPath
});
const nextHandler = nextApp.getRequestHandler();

View File

@@ -4,11 +4,11 @@ import frameworkIntegrationOptions from "public/json/frameworkIntegrations.json"
import { IntegrationsPage } from "@app/views/IntegrationsPage";
type Props = {
frameworkIntegrations: typeof frameworkIntegrationOptions;
};
// type Props = {
// frameworkIntegrations: typeof frameworkIntegrationOptions;
// };
const Integration = ({ frameworkIntegrations }: Props) => {
const Integration = () => {
const { t } = useTranslation();
return (
@@ -20,25 +20,25 @@ const Integration = ({ frameworkIntegrations }: Props) => {
<meta property="og:title" content="Manage your .env files in seconds" />
<meta name="og:description" content={t("integrations.description") as string} />
</Head>
<IntegrationsPage frameworkIntegrations={frameworkIntegrations} />
<IntegrationsPage frameworkIntegrations={frameworkIntegrationOptions} />
</>
);
};
export const getStaticProps = () => {
return {
props: {
frameworkIntegrations: frameworkIntegrationOptions
}
};
};
// export const getStaticProps = () => {
// return {
// props: {
// frameworkIntegrations: frameworkIntegrationOptions
// }
// };
// };
export const getStaticPaths = async () => {
return {
paths: [], // indicates that no page needs be created at build time
fallback: "blocking" // indicates the type of fallback
};
};
// export const getStaticPaths = async () => {
// return {
// paths: [], // indicates that no page needs be created at build time
// fallback: true // indicates the type of fallback
// };
// };
Integration.requireAuth = true;