@@ -1267,11 +1267,11 @@ package:
1267
1267
framework :
1268
1268
assets :
1269
1269
# this manifest is applied to every asset (including packages)
1270
- json_manifest_path : " %kernel.project_dir%/web/assets /manifest.json"
1270
+ json_manifest_path : " %kernel.project_dir%/public/build /manifest.json"
1271
1271
packages :
1272
1272
foo_package :
1273
1273
# this package uses its own manifest (the default file is ignored)
1274
- json_manifest_path : " %kernel.project_dir%/web/assets /a_different_manifest.json"
1274
+ json_manifest_path : " %kernel.project_dir%/public/build /a_different_manifest.json"
1275
1275
bar_package :
1276
1276
# this package uses the global manifest (the default file is used)
1277
1277
base_path : ' /images'
@@ -1288,11 +1288,11 @@ package:
1288
1288
1289
1289
<framework : config >
1290
1290
<!-- this manifest is applied to every asset (including packages) -->
1291
- <framework : assets json-manifest-path =" %kernel.project_dir%/web/assets /manifest.json" >
1291
+ <framework : assets json-manifest-path =" %kernel.project_dir%/public/build /manifest.json" >
1292
1292
<!-- this package uses its own manifest (the default file is ignored) -->
1293
1293
<framework : package
1294
1294
name =" foo_package"
1295
- json-manifest-path =" %kernel.project_dir%/web/assets /a_different_manifest.json" />
1295
+ json-manifest-path =" %kernel.project_dir%/public/build /a_different_manifest.json" />
1296
1296
<!-- this package uses the global manifest (the default file is used) -->
1297
1297
<framework : package
1298
1298
name =" bar_package"
@@ -1307,11 +1307,11 @@ package:
1307
1307
$container->loadFromExtension('framework', array(
1308
1308
'assets' => array(
1309
1309
// this manifest is applied to every asset (including packages)
1310
- 'json_manifest_path' => '%kernel.project_dir%/web/assets /manifest.json',
1310
+ 'json_manifest_path' => '%kernel.project_dir%/public/build /manifest.json',
1311
1311
'packages' => array(
1312
1312
'foo_package' => array(
1313
1313
// this package uses its own manifest (the default file is ignored)
1314
- 'json_manifest_path' => '%kernel.project_dir%/web/assets /a_different_manifest.json',
1314
+ 'json_manifest_path' => '%kernel.project_dir%/public/build /a_different_manifest.json',
1315
1315
),
1316
1316
'bar_package' => array(
1317
1317
// this package uses the global manifest (the default file is used)
0 commit comments