Initial Drupal 11 with DDEV setup

This commit is contained in:
gluebox
2025-10-08 11:39:17 -04:00
commit 89ef74b305
25344 changed files with 2599172 additions and 0 deletions

View File

@ -0,0 +1,37 @@
# Custom library for general purposes.
example_1:
js:
js/example-1.js: {}
css:
component:
css/example-1.css: {}
dependencies:
- core/drupalSettings
- {{ machine_name }}/example_2
# Third-party library (self hosted).
example_2:
remote: https://example.com
version: 1.0.0
license:
name: MIT
url: https://github.com/example/example-2/path/to/LICENSE
gpl-compatible: true
js:
/libraries/example-2/source/example-2.js: {}
css:
component:
/libraries/example-2/source/example-2.css: {}
dependencies:
- core/jquery
# Third-party library (CDN).
example_3:
remote: https://example.com
version: 1.0.0
license:
name: MIT
url: https://github.com/example/example-3/path/to/LICENSE
gpl-compatible: true
js:
https://cdnjs.cloudflare.com/ajax/libs/example/1.0.0/example-3.min.js: {type: external, minified: true}