# Deploy builds install with npm, which symlinks a `file:` directory dependency by
# default. A symlink resolves back into the app, so the server build stops treating
# the package as external and bundles it, and `bindings` cannot survive that: it
# locates its binary from the calling file's path, which becomes a path inside
# `.next` once bundled.
#
# `install-links` makes npm pack the dependency into `node_modules` instead. It only
# takes effect when the dependency is specified without a leading `./`, which is why
# `package.json` says `file:native-addon` rather than `file:./native-addon`.
#
# pnpm ignores this setting and copies the directory into its virtual store either
# way, so the local install is unaffected.
install-links=true
