mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-24 02:06:19 +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;
|
||||
|
||||
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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user