Upon deploying the application on App Engine, the Chrome client initially encounters the following error.
"Refused to apply style from 'https://tournypoker.wl.r.appspot.com/styles/styles.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled."
After a few browser refreshes, the error disappears and everything appears to be functioning correctly. I have tried to troubleshoot by following other similar threads, but no success.
Below is some code that demonstrates how the style sheet is loaded in index.jade --
html(lang="en" ng-app="app")
head
title Poker
link(href="styles/styles.css" rel="stylesheet" type="text/css")
body
#content(ng-view)
script(type="text/javascript", src="socket.io/socket.io.js")
script(type="text/javascript", src="js/libs/angular.min.js")
script(type="text/javascript", src="js/libs/angular-route.min.js")
script(type="text/javascript", src="js/app.js")
script(type="text/javascript", src="js/controllers/lobby.js")
script(type="text/javascript", src="js/controllers/table.js")
script(type="text/javascript", src="js/controllers/chat.js")
script(type="text/javascript", src="js/services/sounds.js")
script(type="text/javascript", src="js/directives/seat.js")