Error deploying: could not resolve module

Hi, im trying to deploy in Vercel
when i run locally yarn rw deploy vercel it seems to work fine
but when i try to deploy in vercel, console are logging this error

[COMPLETED] Generating Prisma Client...
[STARTED] Verifying graphql schema...
[COMPLETED] Verifying graphql schema...
[STARTED] Building API...
[COMPLETED] Building API...
[STARTED] Building Web...
vite v4.5.2 building for production...
transforming...
✓ 58 modules transformed.
✓ built in 2.77s
Could not resolve "../../../components/Newspaper/EditNewspaperCell" from "src/pages/NewsPaper/EditNewsPaperPage/EditNewsPaperPage.jsx"
file: /vercel/path0/web/src/pages/NewsPaper/EditNewsPaperPage/EditNewsPaperPage.jsx
file:///vercel/path0/node_modules/rollup/dist/es/shared/node-entry.js:2287
        base = Object.assign(new Error(base.message), base);
                             ^
Error [RollupError]: Could not resolve "../../../components/Newspaper/EditNewspaperCell" from "src/pages/NewsPaper/EditNewsPaperPage/EditNewsPaperPage.jsx"
    at error (file:///vercel/path0/node_modules/rollup/dist/es/shared/node-entry.js:2287:30)
    at ModuleLoader.handleInvalidResolvedId (file:///vercel/path0/node_modules/rollup/dist/es/shared/node-entry.js:24860:24)
    at file:///vercel/path0/node_modules/rollup/dist/es/shared/node-entry.js:24822:26 {
  code: 'UNRESOLVED_IMPORT',

Hi @krespokiller,

Welcome to the community! Could you share a snippet of your EditNewsPaperPage please? In particular I’m curious about the import statement of EditNewspaperCell as clearly this is where the issue is.

And secondly could you please confirm the following:

  1. Does yarn rw build web run successfully locally?
  2. A screenshot of your file structure (just want to see the directories) around EditNewspaperCell

Thanks,
Danny