Skip to content

Instantly share code, notes, and snippets.

@tkdn
Created February 21, 2023 09:09
Show Gist options
  • Save tkdn/cb0547c3b469f22436731e11389b9300 to your computer and use it in GitHub Desktop.
Save tkdn/cb0547c3b469f22436731e11389b9300 to your computer and use it in GitHub Desktop.
tag差し込み
import { readFileSync, writeFileSync } from 'node:fs';
const filePath = './dist/index.html';
const org = readFileSync(filePath, { encoding: 'utf-8' });
const injectTag = '<meta foo="baz" />';
const buff = org.replace(/(\<\/head\>)/, `${injectTag}$1`);
writeFileSync(filePath, buff);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment