Underneath the app
directory, I can reference a javascript file, ajavascriptfile.js
, inside of a package, from an html document:
<script src="/assets/css/test/ajavascriptfile.js"></script>
However, I can't reference the css file, acssfile.css
, inside of an html document:
<script src="/assets/css/test/acssfile.css"></script>
No error is thrown except in the console, which states the file is not found. Is there a route I'm missing? For organization, it just seems makes sense to use packages to manage them, as opposed to the public folders (where I'm putting 3rd party files).