简体   繁体   中英

Ember CLI - Shared Resource Addon

I am creating two ember applications that will have a lot of shared CSS/components/images between the two of them. I am using the latest version of Ember CLI for the two applications and I would like to create an Ember Addon with the Ember CLI to share all these resources.

What would be the best way to do this to share (1) styles, (2) js components, and (3) images. I have the basics working for the first two and I am struggling with how to share the images and have each application consume them and be able to use them.

Any help would be appreciated!

Thanks!

Maybe the better solution would be to use Git Submodules instead of Shared Addon. This also works for any other shared code.

In this case you would have three repositories: 1) First app, 2) second app, 3) shared code. And you can link the third one to any other repositories as a submodule (think of it as a symlink).

For example, you can link your submodule to /public/shared folder and then use it like /shared/images/image.png , /shared/styles/style.css and so on.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM