I would like to add a different app-links.json to the root of my project according to my NODE_ENV
I didn't see anything about adding a specific file to public
folder in nuxt-config.js
For example I want to have my app-links.json
at the root of my project to be
In production
[{
"relation": ["delegate_permission/common.handle_all_urls"],
"target": {
"namespace": "android_app",
"package_name": "...PRODUCTION...",
}
}]
And in staging
[{
"relation": ["delegate_permission/common.handle_all_urls"],
"target": {
"namespace": "android_app",
"package_name": "...STAGING...",
}
}]