我已完成assets:install --symlink
和assetic:dump
。但它为css和js生成空文件。见下图。
我尝试将symfony升级到2.8版。但它仍然无效。我的项目是在Windows 7中。
这是我的配置
assetic:
debug: "%kernel.debug%"
use_controller: true
filters:
cssrewrite: ~
less:
node: %node_path%
node_paths: [%node_modules_path%]
apply_to: "\.less$"
uglifyjs2:
bin: %kernel.root_dir%/../node_modules/.bin/uglifyjs
mangle: true
uglifycss:
bin: %kernel.root_dir%/../node_modules/.bin/uglifycss
yui_css:
jar: %kernel.root_dir%/Resources/java/yuicompressor-2.4.7.jar
yui_js:
jar: %kernel.root_dir%/Resources/java/yuicompressor-2.4.7.jar
bundles: [BossAgencyAppBundle, BossAgencyPolicyBundle, BossAgencyReportBundle]
这是节点的位置
node_path: 'C:\Program Files\nodejs\node'
node_modules_path: 'C:\Users\david\AppData\Roaming\npm\node_modules'