mirror of
https://github.com/Cian-H/am-d-model.eu.git
synced 2025-12-22 21:41:57 +00:00
git-subtree-dir: repo git-subtree-mainline:433f95e0f4git-subtree-split:d5df1fb87c
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
|
|
},
|
|
),
|
|
},
|
|
)
|