This is a strange issue that I have been having. I moved an app I was building locally to cloud9 so i could do all the development online through a browser. I don't think it was the moving of the local to cloud9. I have a idea that it was more I am missing or have out dated dependencies. I don't know if there is a way to check if that is the issue. I am not really an expert on angular. Here is my dependencies package.json file below.
{
"name": "mean-app",
"version": "1.0.0",
"description": "MEAN stack application",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"mean"
],
"author": "",
"license": "ISC",
"bugs": {
"url": ""
},
"homepage": "",
"dependencies": {
"angular": "^1.6.0",
"angular-jwt": "^0.1.8",
"angular-route": "^1.6.0",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"jsonwebtoken": "^7.2.1",
"mongodb": "^2.2.16",
"mongoose": "^4.7.3",
"purecss": "^0.6.1",
"twilio": "^2.11.1"
},
"devDependencies": {
"mocha": "^2.3.3"
}
}
I am not sure about the reason why now I have the /#!/ once I reloaded this file and moved my other files to the new cloud9 development env.
If someone could direct me to how I can have the /#/ back to normal because it is messing with my routing. and now none of my links load.
Thanks in advance.