mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-24 18:26:20 +01:00
Merge pull request #1036 from djyde/support-multiple-track-script-name
support multiple track script name
This commit is contained in:
commit
0e82807170
@ -4,10 +4,15 @@ function customScriptName(req) {
|
|||||||
const scriptName = process.env.TRACKER_SCRIPT_NAME;
|
const scriptName = process.env.TRACKER_SCRIPT_NAME;
|
||||||
|
|
||||||
if (scriptName) {
|
if (scriptName) {
|
||||||
|
const names = scriptName.split(',').map(name => name + '.js');
|
||||||
|
|
||||||
const url = req.nextUrl.clone();
|
const url = req.nextUrl.clone();
|
||||||
const { pathname } = url;
|
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';
|
url.pathname = '/umami.js';
|
||||||
return NextResponse.rewrite(url);
|
return NextResponse.rewrite(url);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user