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