Next.js Discord

Discord Forum

Can i use 'next/headers' inside a server component that is not the page.ts?

Unanswered
M_Jad posted this in #help-forum
Open in Discord
I am importing 'next/headers'
import { headers } from "next/headers";

export const CategoryProvider = async (props: IProps) => {
  let categories: Category[] = [];
  const nextHeaders = await headers();

  try {
    categories = await new CategoryService(nextHeaders).paginate();
  } catch (error) {}

  return (
    <CategoryProviderClient categories={categories}>
      {props.children}
    </CategoryProviderClient>
  );
};


The problem is children can be client component

const SearchTemplates = async (props: IProps) => {
  return (
          <CategoryProvider>
            <SearchAsideWrapper query={props.query} />
          </CategoryProvider>
  );
};


the code sounds ok for me, but when buiding i keep getting this error

/CategoryProvider/index.tsx
Error:   x You're importing a component that needs "next/headers". That only works in a Server Component which is not supported in the pages/ directory. Read more: https://nextjs.org/docs/app/building-
  | your-application/rendering/server-components
   ,/CategoryProvider/index.tsx:5:1]
 2 | import { CategoryProviderClient } from "./CategoryProviderClient";
 3 | import { Category } from "../../../types/category.type";
 4 | import { CategoryService } from "../../../services/category";
 5 | import { headers } from "next/headers";
   : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 

9 Replies

Versions
"next": "^15.2.2",
Node v18.19.1
i checked the docs and the open issues
Error
You're importing a component that needs "next/headers". That only works in a Server Component which is not supported in the pages/ directory.
i am using the app dir
Rohu
To use next/headers, you have to have 'use server' directive at line 1 of the file
@Rohu To use `next/headers`, you have to have `'use server'` directive at line 1 of the file
That’s not true, as long as you’re in a Server Component it should work, [according to the docs](https://nextjs.org/docs/app/api-reference/functions/headers)
i may create a reproduction repo and if the issue persists will open an issue for it
or if someone knows a solution, pls share