How to publish dependencies?
Hello, I was trying to figure out a way to publish dependencies from my IDE to the cloudflare worker (i.e. node_modules).
wrangler publish node_modules
doesn't seem to work because it wants specific files.2 Replies
You don't publish your
node_modules
. When you import
them in your Worker, they are automatically bundledah, thanks!