I am building a template for concrete5. The problem I am facing is that I have to access the css path from a javascript file. The plugin which has to do this uses:
breakpoints: {
'global': { range: '*', href: '/css/style.css', containers: 0, grid: { gutters: 0 } }
}
The file I am trying to access is located at
domain.com/application/themes/test/css/style.css
and not at
domain.com/css/stlye.css
Kinda stuck with my beginner javascript skills at this point. The console gives me the error 404 for the file. Makes sense since the style.css file is not located where I am searching it..
The js file is located at:
domain.com/application/themes/test/js/init.js
How can I access the style.css file?