How to add multiple plugins in custom scripts inside config.js?

How to add multiple plugins in custom scripts inside config.js?

Like this for example;

customScripts: {
    ngDeps: [
        'selectize'
    ],
    deps: [
        'moment',
        'selectize',
        'lodash'
    ],
    paths: {
        'moment': 'scripts/moment/moment.min',
        'selectize': 'scripts/selectize/dist/selectize',
        'lodash': 'scripts/lodash/dist/lodash.min'
    }
},
1 Like

Thanks @nvanbelle for the help you have done.