Skip to content

Commit 6a907db

Browse files
committed
enable-new-relic
1 parent b74b8d1 commit 6a907db

File tree

4 files changed

+3782
-0
lines changed

4 files changed

+3782
-0
lines changed

scripts/new-relic.postbuild.ts

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { readFileSync } from 'fs'
2+
import { join } from 'path'
3+
4+
const newRelicScript = readFileSync(
5+
join(__dirname, 'new-relic.runtime.js'),
6+
'utf8'
7+
)
8+
9+
export function newRelic(indexHtml: string) {
10+
return indexHtml.replace('<!-- NEW_RELIC_PLACEHOLDER -->', `<script type="text/javascript">
11+
` + newRelicScript + `</script>`)
12+
}

0 commit comments

Comments
 (0)