Recommended project structure for app extensions
-
Hi
I would like to develop a quasar app extension and am wondering about recommended project structure.
-
Using this https://github.com/quasarframework/app-extension-examples/tree/master/my-component as a starting point works fine but needs a 2nd app to test the extension.
-
Expert app extensions like https://github.com/quasarframework/quasar-ui-qoverlay seem to embed the extension in an app.
-
Following instructions here https://quasar.dev/app-extensions/development-guide/introduction#Manually-testing I get a different structure to the expert app extensions.
Any advice?
Thanks
-
-
#2 is everything for the App Extension including the demo app, i.e. for the purpose of demonstration. It’s not a/the development environment.
Follow #3. And #1 is correct. Your AE should be next to a working app for testing. There is also a tip to get HMR while changing your AE too. Make sure you follow that.
Scott
-
Excellent. Many thanks.