Hi there,
I'm trying to use Universal Editor locally using this doc https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/implementing/dev... But page is opened in old `editor.html` only.
What I'm done:
1. Downloaded and run AEM SDK for AEM v2025.3.19823
2. Deployed the latest WNKD on the AEM
3. Configured SSL on AEM using https://experienceleague.adobe.com/en/docs/experience-manager-learn/foundation/security/use-the-ssl-... The final url is https://localhost:8443 (certificate is trusted in macos Keychain).
4. Downloaded and run Universal Editor Service v20250314101227
- SSL certificate is made by (from the doc)
openssl req -newkey rsa:2048 -nodes -keyout key.pem -x509 -days 365 -out certificate.pem
(certificate is trusted in macos Keychain)
- `.env` is (from the doc)
UES_PORT=8000
UES_PRIVATE_KEY=./key.pem
UES_CERT=./certificate.pem
UES_TLS_REJECT_UNAUTHORIZED=false
UES_CORS_PRIVATE_NETWORK=true
5. `/apps/wknd/components/page/customheaderlibs.html` is instrumented by (from the doc)
<meta name="urn:adobe:aue:config:service" content="https://localhost:8000">
6. https://localhost:8000/corslib/LATEST shows a script
7. https://localhost:8000/ping shows `"ping": "pong"`
8. Edit command on `/content/wknd/language-masters/en/about-us` leads to https://localhost:8443/editor.html/content/wknd/language-masters/en/about-us.html (old editor)
Am I missed something?
Any help is appreciated!