Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

react deployment pipeline

const fs = require("fs-extra");
 
const webConfigPath = "./build/web.config";
 
if (fs.existsSync(webConfigPath)) {
    fs.unlinkSync(webConfigPath);
}
 
fs.copySync("./webconfig/web.config", webConfigPath);
Source by www.kieferconsulting.com #
 
PREVIOUS NEXT
Tagged: #react #deployment #pipeline
ADD COMMENT
Topic
Name
5+5 =