Specify Lookup Path/Pattern for Compiled Files
In my file, I refer to compiled CSS files like this:
<link type="text/css" rel="stylesheet" href="styles/style.css"/>
However, I'm using LESS, so the file is actually
styles/style.less. It then gets compiled and put together by a build command later. Is there a way that I can let PHPStorm know about this mapping so I don't get false errors (and thus allows potential real errors to show up)?
Please sign in to leave a comment.