diff --git a/scripts/reconfigure.js b/scripts/reconfigure.js index 84600013ead..1689be625c7 100644 --- a/scripts/reconfigure.js +++ b/scripts/reconfigure.js @@ -432,7 +432,7 @@ function configurePatternExample(pkg, config) { let template = handlebars.compile(fs.readFileSync(path.join(source, file), 'utf-8')) fs.writeFileSync(path.join(dest, file), template(replace)) } - for (let file of ['index.html', 'manifest.json']) { + for (let file of ['index.html', 'manifest.json', 'layout.css']) { let template = handlebars.compile(fs.readFileSync(path.join(source, 'public', file), 'utf-8')) fs.writeFileSync(path.join(dest, 'public', file), template(replace)) }