Custom Stylesheet/Scripts returns a 404 - Wordpress Theme

Viewed 17

I'm bursting my brains out. I just can't figure out why my custom stylesheets/scripts won't load.

The stylesheet/scripts are properly enqueued (see below) but for some reason, if I load the stylesheet on my browser, or check in the browser console. it would return a 404

enqueued via

wp_enqueue_style('libraries', get_template_directory_uri() . '/assets/build/css/libraries.css');
wp_enqueue_style('site', get_template_directory_uri() . '/assets/build/css/site.css');

I have also checked file permissions, and theme and file folders are set to 770.

enter image description here

enter image description here

What do you think is the issue?

1 Answers
Related