Assetic Generating Links But No Files
Answer : You have 2 options when dealing with assets. The reason you do not see your assets physically in your computer is because you chose Option 1. Option 1: SYMFONY CAN PROCESS THE FILES DYNAMICALLY FOR YOU That means that each asset path generated in the dev environment is handled dynamically by Symfony. Therefore, Assetic generates paths to CSS and JavaScript files that don't physically exist on your computer. This is an internal Symfony controller that opens the files and serves back the content for you. Advantages: - Changes made on your assets take immediate effect - This is great in dev mode as Symfony generates the files dynamically for you Disadvantages: - This is not possible in prod mode as rendering each asset dynamically would be too slow - The assets won't be directly accessible on your computer (which is why you cannot find the file) - Can be quite slow if you are using a lot of filters, etc... To do this in dev mode, ju...