mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
13 lines
472 B
JavaScript
13 lines
472 B
JavaScript
/**
|
|
* Export a function. Accept the base config as the only param.
|
|
* @param {Object} options
|
|
* @param {Required<import('webpack').Configuration>} options.config
|
|
* @param {'DEVELOPMENT' | 'PRODUCTION'} options.mode - change the build configuration. 'PRODUCTION' is used when building the static version of storybook.
|
|
*/
|
|
module.exports = async ({ config, mode }) => {
|
|
// Make whatever fine-grained changes you need
|
|
|
|
// Return the altered config
|
|
return config;
|
|
};
|