FAST HELP PLEASE! building next.js project
Unanswered
African Slender-snouted Crocodil… posted this in #help-forum
African Slender-snouted CrocodileOP
I have the following server component
with the following action
on build i get the error in the picture, why?
I tried to read what it says on that docs/messages/prerender-error, but I don't see how it's related to my code 🤔 if I comment the function getAutoMixTemplates, it works
"use server";
import { Suspense } from "react";
import { getAutoMixTemplates } from "@/app/actions/autoTemplates/actions";
import AutoTemplatesTable from "./autoTemplatesTable";
export default async function AutoTemplate() {
const templates = await getAutoMixTemplates();
return (
<div>
<Suspense>
<AutoTemplatesTable templatesJSON={JSON.stringify(templates)} />
</Suspense>
</div>
);
}
with the following action
export const getAutoMixTemplates = async () => {
const admin = await initAdmin();
const db = admin.firestore();
const templates = await db.collection("autoMixTemplates").get();
return templates.docs.map((doc) => {
const data = doc.data();
return {
...data,
_firestore_id: doc.id,
};
});
};
on build i get the error in the picture, why?
I tried to read what it says on that docs/messages/prerender-error, but I don't see how it's related to my code 🤔 if I comment the function getAutoMixTemplates, it works
4 Replies
Have you added env variables?
and are you on monorepo?
Asian black bear
Btw remove the
"use server"
directive. Server components must not be marked with it, only server actions.And your "action" that you posted shouldn't have it either.