I’m having a trouble getting my application to render on Heroku. Here are the details:
After the command:
git push heroku master

I run heroku logs:

I’m doing my homework on precompile errors, but I’m certain that I don’t really understand the error to deduce a solution — guidance is greatly appreciated!
You will want to check your application.css file. You have some styling in there that is not correct. When heroku tried to compile the assets, it ran into the error.
Line 80 of your style3.css has an extra comma in it. Also, you’ve declared
bodytwice. However, thebodytwice shouldn’t generate the error, but it would be overwriting the previous entry.Honestly, over 3000 lines is kind of crazy. you may want to split this up into different sections. At line 3000 (not sure if it’s a limitation of Snippi or if you’ve didn’t finish the tag) you’re missing the end
}on the tag.