Documentation
    Preparing search index...

    Shape of meta file configuration inside the metaFiles array in the adonisrc.js file. Meta files are watched for changes and can trigger server reloads.

    const metaFile: MetaFileNode = {
    pattern: './config/**/*.ts',
    reloadServer: true // Reload server when files matching pattern change
    }
    type MetaFileNode = {
        pattern: string;
        reloadServer: boolean;
    }
    Index

    Properties

    pattern: string
    reloadServer: boolean