mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
temp workaround: remove use of get static prop
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user