Expand my Community achievements bar.

StephanAdobe
StephanAdobe
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • This sample app shows how to connect to AEM to retrieve and display Assets including thumbnails in a custom UI: https://github.com/AdobeDocs/adobeio-samples-aemaacs-assets-custom-ui You'll require a running AEMaaCS author instance to test it. Also, it will only run inside the Experience Cloud Shell ...

    Type

    Questions

    Views

    1.4K

    Like

    1

    Replies

    1
  • Hi @martina54439202  The App Builder (formerly known as Project Firefly ) docs can be found here https://developer.adobe.com/app-builder/docs/overview/You can bootstrap a headless app with the command: aio app init --no-extensionsthen you can select the components to enable for this app, choose "Act...

    Type

    Questions

    Views

    4.6K

    Like

    1

    Replies

    0
  • Hi,You might hit an I/O Runtime system limitation: https://www.adobe.io/apis/experienceplatform/runtime/docs.html#!adobedocs/adobeio-runtime/master/guides/system_settings.md. Which status code and error message do you receive ?

    Type

    Questions

    Views

    963

    Likes

    0

    Replies

    0
  • Images are imported automatically when referenced from the web-src/index.html file. You can also import them manually using JS e.g. from the web-src/index.js file:  import myImage from '../image.png';console.log(myImage); // returns image src path Same for html files:  import myHTML from '../file.ht...

    Type

    Questions

    Views

    1.1K

    Like

    1

    Replies

    1
  • You can use the Hash Router which plays well in the Unified Shell see https://reacttraining.com/react-router/web/api/HashRouter. The code you referenced is related to the Unified Shell history handling. Every time the Unified Shell detects a change in the history, it passes it down to your App e.g. ...

    Type

    Questions

    Views

    3.3K

    Likes

    0

    Replies

    0
  • Hi @Urs_Boller  I recommend to use react-router to handle navigation in your app. Here is a simple working example that shows how to set up navigation. Also if you plan to use TypeScript + React JSX, you should add a tsconfig.json file under your web-src folder with the following config: { "compil...

    Type

    Questions

    Views

    3.9K

    Likes

    0

    Replies

    2