I have two web applications:
App1 - standalone js web application (package.json, index.js, etc. in root folder)
App2 - standalone js web application (package.json, index.js, etc. in root folder)
I've beed tasked with the following requirement:
Deploy App2 in a directory inside App1, something like that:
--root (content of App1)
--index.js
...
--app2SubDirectory (content of App2)
--index.js
...
They will be deployed as a static webpages, there are no dependencies between this apps.
Is this a good idea to have setup like that? For me it looks like antipatern, but I would like to find out if there are any pros of having setup like that?
Thanks