Merge pull request #1058 from ajhyndman/patch-2

1052-resolve-output-path
This commit is contained in:
Norbert de Langen 2017-05-18 15:38:42 +02:00 committed by GitHub
commit e5d3d63ef3

View File

@ -60,7 +60,7 @@ shelljs.cp(path.resolve(__dirname, 'public/favicon.ico'), outputDir);
// custom `.babelrc` file and `webpack.config.js` files
// NOTE changes to env should be done before calling `getBaseConfig`
const config = loadConfig('PRODUCTION', getBaseConfig(), configDir);
config.output.path = outputDir;
config.output.path = path.resolve(outputDir);
// copy all static files
if (program.staticDir) {