Because of how bower_components are installed on Codio boxes - in the workspace root folder by default - the app will not be able to find the required files (scripts & css) outside of its app root. To resolve this, we create a symlink inside of the app folder to find bower_components in the workspace root.
Temp Resolution:
Add a symbolic link to /beep (/app) for _bowercomponents
Because of how bower_components are installed on Codio boxes - in the workspace root folder by default - the app will not be able to find the required files (scripts & css) outside of its app root. To resolve this, we create a symlink inside of the
app
folder to find bower_components in the workspace root.Temp Resolution: Add a symbolic link to /beep (/app) for _bowercomponents
$ ln -s /home/codio/workspace/bower_components /home/codio/workspace/beep/bower_components