├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .github_changelog_generator ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── CHANGELOG.md ├── LICENSE ├── README.md ├── demo ├── .gitignore ├── app │ ├── app-directory-test │ │ └── page.js │ └── layout.js ├── components │ ├── Clickable.js │ ├── EventLog.js │ ├── Like.js │ ├── Popover.js │ └── Usages.js ├── data │ ├── sites.js │ └── sites.json ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── _app.js │ ├── api │ │ └── like.js │ └── index.js ├── postcss.config.js ├── public │ ├── dummy.txt │ └── next-plausible.png └── tailwind.config.js ├── index.ts ├── jest.config.ts ├── lib ├── PlausibleProvider.tsx ├── combinations.ts ├── common.ts ├── usePlausible.ts └── withPlausibleProxy.ts ├── package.json ├── rollup.config.js ├── test ├── app │ ├── pages │ │ ├── _app.js │ │ └── index.js │ └── test.ts ├── appDirectory │ ├── app │ │ ├── layout.js │ │ └── page.js │ ├── next.config.js │ └── test.ts ├── basePath │ ├── next.config.js │ ├── pages │ │ └── index.js │ └── test.ts ├── basePathSubdirectory │ ├── next.config.js │ ├── pages │ │ └── index.js │ └── test.ts ├── customDomainProxy │ ├── next.config.js │ ├── pages │ │ ├── api │ │ │ └── fake │ │ │ │ └── [scriptName].js │ │ └── index.js │ └── test.ts ├── customDomainProxyApi │ ├── next.config.js │ ├── pages │ │ └── index.js │ └── test.ts ├── fixtures.ts ├── page │ ├── pages │ │ ├── customDomain.js │ │ ├── customDomainExclude.js │ │ ├── disabled.js │ │ ├── exclude.js │ │ ├── index.js │ │ ├── integrity.js │ │ ├── manual.js │ │ ├── pageViewProps.js │ │ ├── pageViewPropsAsObject.js │ │ ├── revenue.js │ │ ├── scriptProps.js │ │ ├── selfHosted.js │ │ ├── taggedEvents.js │ │ ├── trackFileDownloads.js │ │ ├── trackLocalhost.js │ │ ├── trackOutboundLinks.js │ │ └── trackOutboundLinksExclude.js │ └── test.ts ├── proxy │ ├── next.config.js │ ├── pages │ │ ├── 404.js │ │ ├── allModifiers.js │ │ ├── exclude.js │ │ ├── index.js │ │ ├── manual.js │ │ ├── trackLocalhost.js │ │ ├── trackOutboundLinks.js │ │ └── trackOutboundLinksExclude.js │ └── test.ts ├── proxyCookies │ ├── middleware.js │ ├── next.config.js │ ├── pages │ │ └── index.js │ └── test.ts ├── proxyLocale │ ├── next.config.js │ ├── pages │ │ ├── exclude.js │ │ ├── index.js │ │ ├── manual.js │ │ ├── trackLocalhost.js │ │ ├── trackOutboundLinks.js │ │ └── trackOutboundLinksExclude.js │ └── test.ts ├── trailingSlash │ ├── next.config.js │ ├── pages │ │ └── index.js │ └── test.ts ├── unit │ ├── combinations.test.ts │ ├── usePlausible.test.ts │ └── withPlausibleProxy.test.ts └── vercel │ └── test.ts └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: 4lejandrito 2 | custom: ['https://buymeacoffee.com/b4iusc3'] 3 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github_changelog_generator: -------------------------------------------------------------------------------- 1 | unreleased=false 2 | exclude-tags-regex=.*beta.* 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/README.md -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/.gitignore -------------------------------------------------------------------------------- /demo/app/app-directory-test/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/app/app-directory-test/page.js -------------------------------------------------------------------------------- /demo/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/app/layout.js -------------------------------------------------------------------------------- /demo/components/Clickable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/components/Clickable.js -------------------------------------------------------------------------------- /demo/components/EventLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/components/EventLog.js -------------------------------------------------------------------------------- /demo/components/Like.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/components/Like.js -------------------------------------------------------------------------------- /demo/components/Popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/components/Popover.js -------------------------------------------------------------------------------- /demo/components/Usages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/components/Usages.js -------------------------------------------------------------------------------- /demo/data/sites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/data/sites.js -------------------------------------------------------------------------------- /demo/data/sites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/data/sites.json -------------------------------------------------------------------------------- /demo/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/next.config.js -------------------------------------------------------------------------------- /demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/package-lock.json -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/pages/_app.js -------------------------------------------------------------------------------- /demo/pages/api/like.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/pages/api/like.js -------------------------------------------------------------------------------- /demo/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/pages/index.js -------------------------------------------------------------------------------- /demo/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/postcss.config.js -------------------------------------------------------------------------------- /demo/public/dummy.txt: -------------------------------------------------------------------------------- 1 | Thanks for trying next-plausible! -------------------------------------------------------------------------------- /demo/public/next-plausible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/public/next-plausible.png -------------------------------------------------------------------------------- /demo/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/demo/tailwind.config.js -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/index.ts -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/jest.config.ts -------------------------------------------------------------------------------- /lib/PlausibleProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/lib/PlausibleProvider.tsx -------------------------------------------------------------------------------- /lib/combinations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/lib/combinations.ts -------------------------------------------------------------------------------- /lib/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/lib/common.ts -------------------------------------------------------------------------------- /lib/usePlausible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/lib/usePlausible.ts -------------------------------------------------------------------------------- /lib/withPlausibleProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/lib/withPlausibleProxy.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/rollup.config.js -------------------------------------------------------------------------------- /test/app/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/app/pages/_app.js -------------------------------------------------------------------------------- /test/app/pages/index.js: -------------------------------------------------------------------------------- 1 | export default function Home() { 2 | return
3 | } 4 | -------------------------------------------------------------------------------- /test/app/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/app/test.ts -------------------------------------------------------------------------------- /test/appDirectory/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/appDirectory/app/layout.js -------------------------------------------------------------------------------- /test/appDirectory/app/page.js: -------------------------------------------------------------------------------- 1 | export default function Home() { 2 | return 'appDirectory' 3 | } 4 | -------------------------------------------------------------------------------- /test/appDirectory/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/appDirectory/next.config.js -------------------------------------------------------------------------------- /test/appDirectory/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/appDirectory/test.ts -------------------------------------------------------------------------------- /test/basePath/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/basePath/next.config.js -------------------------------------------------------------------------------- /test/basePath/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/basePath/pages/index.js -------------------------------------------------------------------------------- /test/basePath/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/basePath/test.ts -------------------------------------------------------------------------------- /test/basePathSubdirectory/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/basePathSubdirectory/next.config.js -------------------------------------------------------------------------------- /test/basePathSubdirectory/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/basePathSubdirectory/pages/index.js -------------------------------------------------------------------------------- /test/basePathSubdirectory/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/basePathSubdirectory/test.ts -------------------------------------------------------------------------------- /test/customDomainProxy/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/customDomainProxy/next.config.js -------------------------------------------------------------------------------- /test/customDomainProxy/pages/api/fake/[scriptName].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/customDomainProxy/pages/api/fake/[scriptName].js -------------------------------------------------------------------------------- /test/customDomainProxy/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/customDomainProxy/pages/index.js -------------------------------------------------------------------------------- /test/customDomainProxy/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/customDomainProxy/test.ts -------------------------------------------------------------------------------- /test/customDomainProxyApi/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/customDomainProxyApi/next.config.js -------------------------------------------------------------------------------- /test/customDomainProxyApi/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/customDomainProxyApi/pages/index.js -------------------------------------------------------------------------------- /test/customDomainProxyApi/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/customDomainProxyApi/test.ts -------------------------------------------------------------------------------- /test/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/fixtures.ts -------------------------------------------------------------------------------- /test/page/pages/customDomain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/pages/customDomain.js -------------------------------------------------------------------------------- /test/page/pages/customDomainExclude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/pages/customDomainExclude.js -------------------------------------------------------------------------------- /test/page/pages/disabled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/pages/disabled.js -------------------------------------------------------------------------------- /test/page/pages/exclude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/pages/exclude.js -------------------------------------------------------------------------------- /test/page/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/pages/index.js -------------------------------------------------------------------------------- /test/page/pages/integrity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/pages/integrity.js -------------------------------------------------------------------------------- /test/page/pages/manual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/pages/manual.js -------------------------------------------------------------------------------- /test/page/pages/pageViewProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/pages/pageViewProps.js -------------------------------------------------------------------------------- /test/page/pages/pageViewPropsAsObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/pages/pageViewPropsAsObject.js -------------------------------------------------------------------------------- /test/page/pages/revenue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/pages/revenue.js -------------------------------------------------------------------------------- /test/page/pages/scriptProps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/pages/scriptProps.js -------------------------------------------------------------------------------- /test/page/pages/selfHosted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/pages/selfHosted.js -------------------------------------------------------------------------------- /test/page/pages/taggedEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/pages/taggedEvents.js -------------------------------------------------------------------------------- /test/page/pages/trackFileDownloads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/pages/trackFileDownloads.js -------------------------------------------------------------------------------- /test/page/pages/trackLocalhost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/pages/trackLocalhost.js -------------------------------------------------------------------------------- /test/page/pages/trackOutboundLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/pages/trackOutboundLinks.js -------------------------------------------------------------------------------- /test/page/pages/trackOutboundLinksExclude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/pages/trackOutboundLinksExclude.js -------------------------------------------------------------------------------- /test/page/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/page/test.ts -------------------------------------------------------------------------------- /test/proxy/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxy/next.config.js -------------------------------------------------------------------------------- /test/proxy/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxy/pages/404.js -------------------------------------------------------------------------------- /test/proxy/pages/allModifiers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxy/pages/allModifiers.js -------------------------------------------------------------------------------- /test/proxy/pages/exclude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxy/pages/exclude.js -------------------------------------------------------------------------------- /test/proxy/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxy/pages/index.js -------------------------------------------------------------------------------- /test/proxy/pages/manual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxy/pages/manual.js -------------------------------------------------------------------------------- /test/proxy/pages/trackLocalhost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxy/pages/trackLocalhost.js -------------------------------------------------------------------------------- /test/proxy/pages/trackOutboundLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxy/pages/trackOutboundLinks.js -------------------------------------------------------------------------------- /test/proxy/pages/trackOutboundLinksExclude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxy/pages/trackOutboundLinksExclude.js -------------------------------------------------------------------------------- /test/proxy/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxy/test.ts -------------------------------------------------------------------------------- /test/proxyCookies/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxyCookies/middleware.js -------------------------------------------------------------------------------- /test/proxyCookies/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxyCookies/next.config.js -------------------------------------------------------------------------------- /test/proxyCookies/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxyCookies/pages/index.js -------------------------------------------------------------------------------- /test/proxyCookies/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxyCookies/test.ts -------------------------------------------------------------------------------- /test/proxyLocale/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxyLocale/next.config.js -------------------------------------------------------------------------------- /test/proxyLocale/pages/exclude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxyLocale/pages/exclude.js -------------------------------------------------------------------------------- /test/proxyLocale/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxyLocale/pages/index.js -------------------------------------------------------------------------------- /test/proxyLocale/pages/manual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxyLocale/pages/manual.js -------------------------------------------------------------------------------- /test/proxyLocale/pages/trackLocalhost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxyLocale/pages/trackLocalhost.js -------------------------------------------------------------------------------- /test/proxyLocale/pages/trackOutboundLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxyLocale/pages/trackOutboundLinks.js -------------------------------------------------------------------------------- /test/proxyLocale/pages/trackOutboundLinksExclude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxyLocale/pages/trackOutboundLinksExclude.js -------------------------------------------------------------------------------- /test/proxyLocale/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/proxyLocale/test.ts -------------------------------------------------------------------------------- /test/trailingSlash/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/trailingSlash/next.config.js -------------------------------------------------------------------------------- /test/trailingSlash/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/trailingSlash/pages/index.js -------------------------------------------------------------------------------- /test/trailingSlash/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/trailingSlash/test.ts -------------------------------------------------------------------------------- /test/unit/combinations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/unit/combinations.test.ts -------------------------------------------------------------------------------- /test/unit/usePlausible.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/unit/usePlausible.test.ts -------------------------------------------------------------------------------- /test/unit/withPlausibleProxy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/unit/withPlausibleProxy.test.ts -------------------------------------------------------------------------------- /test/vercel/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/test/vercel/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lejandrito/next-plausible/HEAD/tsconfig.json --------------------------------------------------------------------------------