mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 05:44:24 +00:00
BREAKING CHANGE: avoid using the macro for download button. To keep the UI clean, use always the new "group of action buttons".
9 lines
369 B
JavaScript
9 lines
369 B
JavaScript
module.exports = function(encore)
|
|
{
|
|
encore.addAliases({
|
|
ChillDocStoreAssets: __dirname + '/Resources/public'
|
|
});
|
|
encore.addEntry('mod_async_upload', __dirname + '/Resources/public/module/async_upload/index.js');
|
|
encore.addEntry('mod_document_action_buttons_group', __dirname + '/Resources/public/module/document_action_buttons_group/index');
|
|
};
|