15 lines
244 B
PHP
15 lines
244 B
PHP
<?php
|
|
|
|
/**
|
|
* Importmap configuration for the asset mapper.
|
|
*
|
|
* The single "app" entrypoint is enough for Bootstrap + custom JS tweaks.
|
|
*/
|
|
return [
|
|
'app' => [
|
|
'path' => './assets/app.js',
|
|
'entrypoint' => true,
|
|
],
|
|
];
|
|
|