strapi/fileTransformer.js
2019-05-29 17:25:56 +02:00

8 lines
165 B
JavaScript

const path = require('path');
module.exports = {
process(src, filename) {
return 'module.exports = ' + JSON.stringify(path.basename(filename)) + ';';
},
};