芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/strapi/lib/load/check-reserved-filename.js
'use strict'; const _ = require('lodash'); // files to load with filename key const prefixedPaths = [ 'functions', 'policies', 'locales', 'hook', 'middleware', 'language', 'layout', ]; module.exports = function checkReservedFilenames(file) { return _.some(prefixedPaths, e => file.indexOf(`config/${e}`) >= 0) ? true : false; };