diff --git a/backend/src/index.ts b/backend/src/index.ts
index 746536586..aa4d09e0b 100644
--- a/backend/src/index.ts
+++ b/backend/src/index.ts
@@ -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();
diff --git a/frontend/src/pages/integrations/[id].tsx b/frontend/src/pages/integrations/[id].tsx
index 143e3ad2f..06cea5d64 100644
--- a/frontend/src/pages/integrations/[id].tsx
+++ b/frontend/src/pages/integrations/[id].tsx
@@ -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) => {
-
+
>
);
};
-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;