admin/plopfile.js
2025-05-14 21:42:26 +02:00

18 lines
407 B
JavaScript

/* eslint-disable import/no-extraneous-dependencies */
const path = require('path');
const templateDir = 'seed/plop-templates';
const getTemplatePath = filename => path.join(templateDir, filename);
const componentPath = 'src/components';
const storePath = 'src/store';
const plopBase = require('./seed/plopbase');
module.exports = plopBase({
getTemplatePath,
path,
storePath,
componentPath,
});