Markus Johansson
05/27/2024, 8:25 AMD_Inventor
05/27/2024, 9:11 AMD_Inventor
05/27/2024, 9:12 AMKevin Jump
05/27/2024, 10:01 AMMarkus Johansson
05/27/2024, 1:05 PMMarkus Johansson
05/27/2024, 1:06 PMJacob Overgaard
05/27/2024, 1:48 PM/umbraco/backoffice/<hash>/*
leads to the web path /umbraco/backoffice/*
. You could do something similar in your solution. However, you will have to know the hash when you type out the path in the umbraco-package.json file. I think it would be a good idea if we introduced some sort of way to load extensions with the version number and/or hash for you in the Backoffice client.
https://cdn.discordapp.com/attachments/1244567136114966529/1244648435928530944/image.png?ex=6655e0af&is=66548f2f&hm=dee116b79678a14204afd31cec79674d9ec05553ceee79ea48e7886900317b47&Mark Drake
05/27/2024, 2:33 PMMarkus Johansson
05/27/2024, 2:54 PMMarkus Johansson
05/27/2024, 2:56 PMMark Drake
05/27/2024, 3:32 PMMarkus Johansson
05/28/2024, 10:19 AMMarkus Johansson
05/28/2024, 11:22 AM?
and use &
so that things dont' break ๐
{
"$schema": "../../../../../samples/UmbracoTestSite/umbraco-package-schema.json",
"name": "MyThing",
"version": "1.0.0",
"extensions": [
{
"type": "entryPoint",
"alias": "MyThing.EntryPoint",
"name": "MyThing Entry Point",
"js": "/App_Plugins/MyThing/dist/my-thing.js?v1",
"weight": 150000
}
]
}
Jacob Overgaard
05/28/2024, 11:43 AM#CACHE_BUSTER#
wherever you like. I think we should be able to do the same for extensions. Maybe even support #PACKAGE_VERSION#
.Markus Johansson
05/28/2024, 2:37 PMMarkus Johansson
05/28/2024, 2:38 PM