我正在寻找一个简单的资产过滤器来替换我的symfony应用程序中的Javascript文件中的变量。 我想在我的应用程序config.yml中定义变量,并在我的JS文件中使用$ variablename。
答案 0 :(得分:0)
将css作为控制器响应返回。
/**
* @Route("/style.css")
*/
public function styleAction()
{
$response = new Response();
$response->setContent(/* make your css */);
$response->headers->set('Content-Type', 'text/css');
return $response;
}