mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
781ac9ac25
* docs: add docs for theme and filter plugins * typos * typos * Create strong-socks-type.md * Update plugins.md * typos
14 lines
377 B
JavaScript
14 lines
377 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = () => {
|
|
return {
|
|
// location of the static files, webpack output
|
|
staticPath: path.join(__dirname, 'static'),
|
|
// webpack manifest json file
|
|
manifest: require('./static/manifest.json'),
|
|
// main manifest files to be loaded
|
|
manifestFiles: {
|
|
js: ['runtime.js', 'vendors.js', 'main.js'],
|
|
},
|
|
};
|
|
};
|