Goto your_theme.theme file
add below code
function your_theme_preprocess(&$variables, $hook)
{
$variables['base_path'] = base_path();
}
and use below token inside page.html.twing file
{{ base_path }}
function your_theme_preprocess(&$variables, $hook)
{
$variables['base_path'] = base_path();
}
{{ base_path }}