Skip to content

Commit 2f003cf

Browse files
committed
Simplified assets paths
1 parent ccda00c commit 2f003cf

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

app/Resources/views/base.html.twig

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
{# uncomment the following lines to compile SCSS assets with Assetic
1414
1515
{% stylesheets filter="scssphp" output="css/app.css"
16-
"%kernel.root_dir%/../web/assets/scss/bootstrap.scss"
17-
"%kernel.root_dir%/../web/assets/scss/font-awesome.scss"
18-
"%kernel.root_dir%/../web/assets/css/*.css"
19-
"%kernel.root_dir%/../web/assets/scss/main.scss"
16+
"assets/scss/bootstrap.scss"
17+
"assets/scss/font-awesome.scss"
18+
"assets/css/*.css"
19+
"assets/scss/main.scss"
2020
%}
2121
<link rel="stylesheet" href="{{ asset_url }}" />
2222
{% endstylesheets %}
@@ -135,9 +135,9 @@
135135
{% block javascripts %}
136136
{# uncomment the following lines to combine and minimize JavaScript assets with Assetic
137137
{% javascripts filter="jsqueeze" output="js/app.js"
138-
"%kernel.root_dir%/../web/assets/js/jquery-2.1.3.js"
139-
"%kernel.root_dir%/../web/assets/js/bootstrap-3.3.4.js"
140-
"%kernel.root_dir%/../web/assets/js/highlight.pack.js" %}
138+
"assets/js/jquery-2.1.3.js"
139+
"assets/js/bootstrap-3.3.4.js"
140+
"assets/js/highlight.pack.js" %}
141141
<script src="{{ asset_url }}"></script>
142142
{% endjavascripts %}
143143
#}

0 commit comments

Comments
 (0)