I have a React app I\'ve been developing on my localhost. I want to copy it to a server into a subdirectory called vensa.
My webpack config file looks like this..
var sourcePath = path.resolve(__dirname, 'src', 'index.js'); var buildPath = path.resolve(__dirname, 'vensa'); module.exports = { entry: [sourcePath], output: { path: buildPath, filename: '[name]-[hash].js', hash: true } ...