9 lines
205 B
JavaScript
9 lines
205 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
module.exports = async ({ strapi }) => {
|
||
|
// Instantiate the pluginTypes array.
|
||
|
if (!strapi.plugin('config-sync').pluginTypes) {
|
||
|
strapi.plugin('config-sync').pluginTypes = [];
|
||
|
}
|
||
|
};
|