I've built a mono-repository project with Turbo.
I have 2 Next.js projects in this repo.
I want to share font to each Next.js project.
apps
|- next_project1
|- next_project2
packages
|- pulbic // I am not sure it is correct
|- components
...
In packages/public
, there are some .woff
files.
And packages/components
uses .woff
from packages/public
.
but it throws with
Failed to load resource: the server responded with a status of 404 (Not Found)
How can I share fonts to all projects under monorepo?