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

15 lines
377 B
JavaScript
Raw Normal View History

const path = require('path');
2021-04-02 08:59:47 -05:00
module.exports = () => {
return {
// location of the static files, webpack output
2021-04-02 08:59:47 -05:00
staticPath: path.join(__dirname, 'static'),
// webpack manifest json file
2021-04-02 08:59:47 -05:00
manifest: require('./static/manifest.json'),
// main manifest files to be loaded
2021-04-02 08:59:47 -05:00
manifestFiles: {
js: ['runtime.js', 'vendors.js', 'main.js'],
},
};
};