mirror of
https://github.com/Cian-H/am-d-model-data-repository.git
synced 2025-12-23 22:21:58 +00:00
17 lines
344 B
Python
17 lines
344 B
Python
"""JS/CSS Webpack bundles for AM-D-Model Data Repository."""
|
|
|
|
from invenio_assets.webpack import WebpackThemeBundle
|
|
|
|
theme = WebpackThemeBundle(
|
|
__name__,
|
|
"assets",
|
|
default="semantic-ui",
|
|
themes={
|
|
"semantic-ui": dict(
|
|
entry={
|
|
# Add your webpack entrypoints
|
|
},
|
|
),
|
|
},
|
|
)
|