Hi guys new to rails and I'm playing around with it but I cannot get the CSS to load. I'm on windows
This is my application.css file
*= require_tree .
*= require_self
body {
background-color: blue;
}
application.html.erb file
<!DOCTYPE html>
<html>
<head>
<title>Blog</title>
<%= stylesheet_link_tag 'default', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'default', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
</head>
<body>
<%= yield %>
</body>
</html>