You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
995 B
32 lines
995 B
7 years ago
|
<?php
|
||
|
|
||
|
return [
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Assets Manifest
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| Your asset manifest is used by Sage to assist WordPress and your views
|
||
|
| with rendering the correct URLs for your assets. This is especially
|
||
|
| useful for statically referencing assets with dynamically changing names
|
||
|
| as in the case of cache-busting.
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
'manifest' => get_theme_file_path().'/dist/assets.json',
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Assets Path URI
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| The asset manifest contains relative paths to your assets. This URI will
|
||
|
| be prepended when using Sage's asset management system. Change this if
|
||
|
| you are using a CDN.
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
'uri' => get_theme_file_uri().'/dist',
|
||
|
];
|