1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/packages/plugins/ui-theme/index.js
2021-04-09 17:54:41 +02:00

12 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'],
},
};
};