Merge pull request #1036 from djyde/support-multiple-track-script-name

support multiple track script name
This commit is contained in:
Mike Cao 2022-04-09 20:13:13 -07:00 committed by GitHub
commit 0e82807170
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,10 +4,15 @@ function customScriptName(req) {
const scriptName = process.env.TRACKER_SCRIPT_NAME;
if (scriptName) {
const names = scriptName.split(',').map(name => name + '.js');
const url = req.nextUrl.clone();
const { pathname } = url;
if (pathname.endsWith(`/${scriptName}.js`)) {
const pathNameParts = pathname.split('/');
const lastPathName = pathNameParts[pathNameParts.length - 1];
if (names.indexOf(lastPathName) !== -1) {
url.pathname = '/umami.js';
return NextResponse.rewrite(url);
}