Services

Intro

This file contains the services configuration for the application.Here you can set the services you want to use in your application In the file @config/services.ts you can set the config of the services

Example

The next example is the default configuration

export default {

    payments: {
        stripe: {
            events: ['*']
        }
    },

    newsletter: {
        mailerlite: {}
    },

    testimonials: {
        praisehive: {
            carousel: {},
            grid: {
                id:  'your-widget-id-here',
                layout: 'masonry',
            },
            avatars: {
                id: 'your-widget-id-here',
                layout: 'avatars',
            }
        }
    }
}

Usage

Table of Contents