alexdaniels.me/importmap.php

62 lines
1.6 KiB
PHP
Raw Permalink Normal View History

2026-05-22 12:37:35 -07:00
<?php
/**
* Returns the importmap for this application.
*
* - "path" is a path inside the asset mapper system. Use the
* "debug:asset-map" command to see the full list of paths.
*
* - "entrypoint" (JavaScript only) set to true for any module that will
* be used as an "entrypoint" (and passed to the importmap() Twig function).
*
* The "importmap:require" command can be used to add new entries to this file.
*/
return [
2026-06-03 17:18:50 -07:00
'main' => [
'path' => './assets/main.js',
'entrypoint' => true,
],
'brain' => [
'path' => './assets/brain.js',
'entrypoint' => true,
],
'landing' => [
'path' => './assets/landing.js',
2026-05-22 12:37:35 -07:00
'entrypoint' => true,
],
'@hotwired/stimulus' => [
'version' => '3.2.2',
],
'@symfony/stimulus-bundle' => [
'path' => './vendor/symfony/stimulus-bundle/assets/dist/loader.js',
],
'@hotwired/turbo' => [
'version' => '8.0.23',
],
2026-06-03 17:18:50 -07:00
'tom-select' => [
'version' => '2.6.1',
],
'@orchidjs/sifter' => [
'version' => '1.1.0',
],
'@orchidjs/unicode-variants' => [
'version' => '1.1.2',
],
'tom-select/dist/css/tom-select.default.min.css' => [
'version' => '2.6.1',
'type' => 'css',
],
'tom-select/dist/css/tom-select.default.css' => [
'version' => '2.6.1',
'type' => 'css',
],
'tom-select/dist/css/tom-select.bootstrap4.css' => [
'version' => '2.6.1',
'type' => 'css',
],
'tom-select/dist/css/tom-select.bootstrap5.css' => [
'version' => '2.6.1',
'type' => 'css',
],
2026-05-22 12:37:35 -07:00
];