104 lines
2.6 KiB
PHP
104 lines
2.6 KiB
PHP
<?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 [
|
|
'backend/dashboard' => [
|
|
'path' => './assets/backend/dashboard/dashboard.js',
|
|
'entrypoint' => true,
|
|
],
|
|
'backend/tailwind' => [
|
|
'path' => './assets/tailwind/backend.js',
|
|
'entrypoint' => true,
|
|
],
|
|
'@hotwired/stimulus' => [
|
|
'version' => '3.2.2',
|
|
],
|
|
'tom-select/dist/css/tom-select.bootstrap5.css' => [
|
|
'version' => '2.4.1',
|
|
'type' => 'css',
|
|
],
|
|
'@symfony/stimulus-bundle' => [
|
|
'path' => '@symfony/stimulus-bundle/loader.js',
|
|
],
|
|
'tom-select' => [
|
|
'version' => '2.4.1',
|
|
],
|
|
'@orchidjs/sifter' => [
|
|
'version' => '1.1.0',
|
|
],
|
|
'@orchidjs/unicode-variants' => [
|
|
'version' => '1.1.2',
|
|
],
|
|
'chart.js' => [
|
|
'version' => '3.9.1',
|
|
],
|
|
'@symfony/ux-live-component' => [
|
|
'path' => './vendor/symfony/ux-live-component/assets/dist/live_controller.js',
|
|
],
|
|
'alpinejs' => [
|
|
'version' => '3.14.8',
|
|
],
|
|
'@alpinejs/persist' => [
|
|
'version' => '3.14.8',
|
|
],
|
|
'jquery' => [
|
|
'version' => '3.7.1',
|
|
],
|
|
'bs5-utils' => [
|
|
'version' => '1.0.3',
|
|
],
|
|
'brace' => [
|
|
'version' => '0.11.1',
|
|
],
|
|
'brace/mode/html' => [
|
|
'version' => '0.11.1',
|
|
],
|
|
'brace/mode/php' => [
|
|
'version' => '0.11.1',
|
|
],
|
|
'brace/mode/xml' => [
|
|
'version' => '0.11.1',
|
|
],
|
|
'brace/theme/monokai' => [
|
|
'version' => '0.11.1',
|
|
],
|
|
'brace/ext/searchbox' => [
|
|
'version' => '0.11.1',
|
|
],
|
|
'bootstrap' => [
|
|
'version' => '5.3.3',
|
|
],
|
|
'@popperjs/core' => [
|
|
'version' => '2.11.8',
|
|
],
|
|
'bootstrap/dist/css/bootstrap.min.css' => [
|
|
'version' => '5.3.3',
|
|
'type' => 'css',
|
|
],
|
|
'tom-select/dist/css/tom-select.default.css' => [
|
|
'version' => '2.4.1',
|
|
'type' => 'css',
|
|
],
|
|
'summernote/dist/summernote-lite.min.css' => [
|
|
'version' => '0.9.1',
|
|
'type' => 'css',
|
|
],
|
|
'bootstrap-toggle/css/bootstrap-toggle.min.css' => [
|
|
'version' => '2.2.2',
|
|
'type' => 'css',
|
|
],
|
|
'summernote/dist/summernote-lite.js' => [
|
|
'version' => '0.9.1',
|
|
],
|
|
];
|