#How to add custom @medusajs/admin in medusa
1 messages · Page 1 of 1 (latest)
change the version you want in your package.json,
then
yarn```
is it possible to add "@medusajs/admin": "<https://github.com/<YOUR_USERNAME>/admin.git"> like this?
actually yeah you can,
{
"dependencies": {
"package-name": "github:username/repository"
}
}
example
{
"dependencies": {
"lodash": "github:lodash/lodash",
"my-package": "github:myusername/myrepo#main",
"another-package": "github:someuser/another-repo#v1.2.3"
}
}