0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/packages/plugins/ui-theme/index.js
2021-04-09 17:54:41 +02:00

11 lines
251 B
JavaScript

const path = require('path');
module.exports = () => {
return {
staticPath: path.join(__dirname, 'static'),
manifest: require('./static/manifest.json'),
manifestFiles: {
js: ['runtime.js', 'vendors.js', 'main.js'],
},
};
};