Integrate Application in HTML

Hello,
I have been tinkering with Vaadin 14 for a while and created my first application: http://scramblesquaressolveronline-env.eba-knnrvxeg.eu-central-1.elasticbeanstalk.com/

I now would like to know, how to integrate the application into a simple plain HTML website. I am not looking for a solution using iframes, but rather an plain HTML website that imports my application somehow.

I already looked at https://vaadin.com/docs/v14/flow/web-components/integrating-a-web-component but this is not really what I am looking for. My use case is much simpler.

Best regards,
Andreas

You are looking wrong place. The chapter you probably want to check is this one:

https://vaadin.com/docs/v14/flow/integrations/embedding/tutorial-webcomponent-intro

There are two alternatives for you. You can export the application as web component using WebComponentExporter or use more traditional way of embedding your app in iframe element in your hthml website.

Tatu Lund:
You are looking wrong place. The chapter you probably want to check is this one:

https://vaadin.com/docs/v14/flow/integrations/embedding/tutorial-webcomponent-intro

There are two alternatives for you. You can export the application as web component using WebComponentExporter or use more traditional way of embedding your app in iframe element in your hthml website.

Yes was thinking of something like that as well…