# $kirby->url('assets')

Returns the url of the assets folder

****

****

## Example

```php
<?= $kirby->url('assets') ?>
```

## Custom setup

If you want to overwrite the Url you can do this in your `index.php` by passing a custom Url setup to the Kirby constructor.

```php "/index.php"
<?php

include 'kirby/bootstrap.php';

$kirby = new Kirby([
    'urls' => [
        'if-you-want-to-overwrite-the-url-you-can-do-this-in-your-index-php-by-passing-a-custom-url-setup-to-the-kirby-constructor-php-in' => 'https://example.com/custom/url',
    ],
]);

echo $kirby->render();

```