i'm developping a symfony application using assetics. when i dump assets
assetic:dump
then i deleted cache manually.
there is no problem all is done correctely. dev env turns correctely too. but when i use prod env i have some js errors. some functions are not readed.
$(...).mask is not a function
,
Cannot read property 'getWidthFrom' of undefined
,
timeLeft is not defined
I don't know why in dev env is working but not the same case for prod env. any one to help me?
I have just deleted
{{parent()}}
because of it symfony generate two calls ofmain.js
and that cause this problem