├── .babelrc ├── .eslintrc.js ├── .gitignore ├── .npmrc ├── .prettierrc.js ├── .yarnrc ├── README.md ├── dist ├── ConfigExtractor │ ├── helpers.d.ts │ ├── helpers.js │ ├── index.d.ts │ ├── index.js │ ├── types.d.ts │ ├── types.js │ ├── utils.d.ts │ └── utils.js ├── SitemapGenerator.d.ts ├── SitemapGenerator.js ├── SitemapIndexWriter │ ├── constants.d.ts │ ├── constants.js │ ├── index.d.ts │ ├── index.js │ ├── types.d.ts │ └── types.js ├── SitemapWriter │ ├── constants.d.ts │ ├── constants.js │ ├── helpers.d.ts │ ├── helpers.js │ ├── index.d.ts │ ├── index.js │ ├── types.d.ts │ ├── types.js │ ├── utils.d.ts │ └── utils.js ├── types.d.ts └── types.js ├── examples ├── dynamicPaths │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── sitemap.xml │ │ └── vercel.svg │ ├── sitemap-generator.js │ └── src │ │ └── pages │ │ ├── index.js │ │ └── project │ │ └── [id].js ├── exportPathMap │ ├── .gitignore │ ├── README.md │ ├── next.config.js │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── sitemap.xml │ │ └── vercel.svg │ ├── sitemap-generator.js │ └── src │ │ └── pages │ │ ├── admin.js │ │ ├── index.js │ │ └── post │ │ └── learn-nextjs.js ├── localized │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── sitemap.xml │ │ └── vercel.svg │ ├── sitemap-generator.js │ └── src │ │ └── pages │ │ ├── about.js │ │ ├── index.js │ │ └── works.js ├── localizedSubdomain │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── sitemap.xml │ │ └── vercel.svg │ ├── sitemap-generator.js │ └── src │ │ └── pages │ │ ├── about.js │ │ └── index.js ├── multipleSitemaps │ ├── .gitignore │ ├── README.md │ ├── next.config.js │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── sitemap.xml │ │ ├── sitemap1.xml │ │ ├── sitemap2.xml │ │ ├── sitemap3.xml │ │ └── vercel.svg │ ├── sitemap-generator.js │ └── src │ │ └── pages │ │ └── post │ │ └── [id].js ├── simple │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── sitemap.xml │ │ └── vercel.svg │ ├── sitemap-generator.js │ └── src │ │ └── pages │ │ ├── admin │ │ ├── account.js │ │ └── cms.js │ │ ├── index.js │ │ └── projects │ │ ├── computers │ │ ├── laptop.js │ │ └── pc.js │ │ └── phones │ │ ├── android.js │ │ └── ios.js └── typescript │ ├── .babelrc │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── sitemap.xml │ └── vercel.svg │ ├── sitemap-generator.ts │ ├── src │ └── pages │ │ ├── about.js │ │ ├── index.js │ │ ├── project │ │ └── [id].js │ │ └── works.js │ └── tsconfig.json ├── package.json ├── src ├── ConfigExtractor │ ├── helpers.ts │ ├── index.ts │ ├── types.ts │ └── utils.ts ├── SitemapGenerator.ts ├── SitemapIndexWriter │ ├── constants.ts │ ├── index.ts │ └── types.ts ├── SitemapWriter │ ├── constants.ts │ ├── helpers.ts │ ├── index.ts │ ├── types.ts │ └── utils.ts └── types.ts ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | registry=https://npm.pkg.github.com/sergeymyssak 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | registry=https://npm.pkg.github.com/sergeymyssak 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/README.md -------------------------------------------------------------------------------- /dist/ConfigExtractor/helpers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/ConfigExtractor/helpers.d.ts -------------------------------------------------------------------------------- /dist/ConfigExtractor/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/ConfigExtractor/helpers.js -------------------------------------------------------------------------------- /dist/ConfigExtractor/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/ConfigExtractor/index.d.ts -------------------------------------------------------------------------------- /dist/ConfigExtractor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/ConfigExtractor/index.js -------------------------------------------------------------------------------- /dist/ConfigExtractor/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/ConfigExtractor/types.d.ts -------------------------------------------------------------------------------- /dist/ConfigExtractor/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /dist/ConfigExtractor/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/ConfigExtractor/utils.d.ts -------------------------------------------------------------------------------- /dist/ConfigExtractor/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/ConfigExtractor/utils.js -------------------------------------------------------------------------------- /dist/SitemapGenerator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/SitemapGenerator.d.ts -------------------------------------------------------------------------------- /dist/SitemapGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/SitemapGenerator.js -------------------------------------------------------------------------------- /dist/SitemapIndexWriter/constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/SitemapIndexWriter/constants.d.ts -------------------------------------------------------------------------------- /dist/SitemapIndexWriter/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/SitemapIndexWriter/constants.js -------------------------------------------------------------------------------- /dist/SitemapIndexWriter/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/SitemapIndexWriter/index.d.ts -------------------------------------------------------------------------------- /dist/SitemapIndexWriter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/SitemapIndexWriter/index.js -------------------------------------------------------------------------------- /dist/SitemapIndexWriter/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/SitemapIndexWriter/types.d.ts -------------------------------------------------------------------------------- /dist/SitemapIndexWriter/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /dist/SitemapWriter/constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/SitemapWriter/constants.d.ts -------------------------------------------------------------------------------- /dist/SitemapWriter/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/SitemapWriter/constants.js -------------------------------------------------------------------------------- /dist/SitemapWriter/helpers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/SitemapWriter/helpers.d.ts -------------------------------------------------------------------------------- /dist/SitemapWriter/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/SitemapWriter/helpers.js -------------------------------------------------------------------------------- /dist/SitemapWriter/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/SitemapWriter/index.d.ts -------------------------------------------------------------------------------- /dist/SitemapWriter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/SitemapWriter/index.js -------------------------------------------------------------------------------- /dist/SitemapWriter/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/SitemapWriter/types.d.ts -------------------------------------------------------------------------------- /dist/SitemapWriter/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /dist/SitemapWriter/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/SitemapWriter/utils.d.ts -------------------------------------------------------------------------------- /dist/SitemapWriter/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/SitemapWriter/utils.js -------------------------------------------------------------------------------- /dist/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/dist/types.d.ts -------------------------------------------------------------------------------- /dist/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /examples/dynamicPaths/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/dynamicPaths/.gitignore -------------------------------------------------------------------------------- /examples/dynamicPaths/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/dynamicPaths/README.md -------------------------------------------------------------------------------- /examples/dynamicPaths/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/dynamicPaths/package.json -------------------------------------------------------------------------------- /examples/dynamicPaths/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/dynamicPaths/public/favicon.ico -------------------------------------------------------------------------------- /examples/dynamicPaths/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/dynamicPaths/public/sitemap.xml -------------------------------------------------------------------------------- /examples/dynamicPaths/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/dynamicPaths/public/vercel.svg -------------------------------------------------------------------------------- /examples/dynamicPaths/sitemap-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/dynamicPaths/sitemap-generator.js -------------------------------------------------------------------------------- /examples/dynamicPaths/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/dynamicPaths/src/pages/index.js -------------------------------------------------------------------------------- /examples/dynamicPaths/src/pages/project/[id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/dynamicPaths/src/pages/project/[id].js -------------------------------------------------------------------------------- /examples/exportPathMap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/exportPathMap/.gitignore -------------------------------------------------------------------------------- /examples/exportPathMap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/exportPathMap/README.md -------------------------------------------------------------------------------- /examples/exportPathMap/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/exportPathMap/next.config.js -------------------------------------------------------------------------------- /examples/exportPathMap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/exportPathMap/package.json -------------------------------------------------------------------------------- /examples/exportPathMap/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/exportPathMap/public/favicon.ico -------------------------------------------------------------------------------- /examples/exportPathMap/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/exportPathMap/public/sitemap.xml -------------------------------------------------------------------------------- /examples/exportPathMap/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/exportPathMap/public/vercel.svg -------------------------------------------------------------------------------- /examples/exportPathMap/sitemap-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/exportPathMap/sitemap-generator.js -------------------------------------------------------------------------------- /examples/exportPathMap/src/pages/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/exportPathMap/src/pages/admin.js -------------------------------------------------------------------------------- /examples/exportPathMap/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/exportPathMap/src/pages/index.js -------------------------------------------------------------------------------- /examples/exportPathMap/src/pages/post/learn-nextjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/exportPathMap/src/pages/post/learn-nextjs.js -------------------------------------------------------------------------------- /examples/localized/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localized/.gitignore -------------------------------------------------------------------------------- /examples/localized/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localized/README.md -------------------------------------------------------------------------------- /examples/localized/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localized/package.json -------------------------------------------------------------------------------- /examples/localized/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localized/public/favicon.ico -------------------------------------------------------------------------------- /examples/localized/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localized/public/sitemap.xml -------------------------------------------------------------------------------- /examples/localized/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localized/public/vercel.svg -------------------------------------------------------------------------------- /examples/localized/sitemap-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localized/sitemap-generator.js -------------------------------------------------------------------------------- /examples/localized/src/pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localized/src/pages/about.js -------------------------------------------------------------------------------- /examples/localized/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localized/src/pages/index.js -------------------------------------------------------------------------------- /examples/localized/src/pages/works.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localized/src/pages/works.js -------------------------------------------------------------------------------- /examples/localizedSubdomain/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localizedSubdomain/.gitignore -------------------------------------------------------------------------------- /examples/localizedSubdomain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localizedSubdomain/README.md -------------------------------------------------------------------------------- /examples/localizedSubdomain/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localizedSubdomain/package.json -------------------------------------------------------------------------------- /examples/localizedSubdomain/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localizedSubdomain/public/favicon.ico -------------------------------------------------------------------------------- /examples/localizedSubdomain/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localizedSubdomain/public/sitemap.xml -------------------------------------------------------------------------------- /examples/localizedSubdomain/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localizedSubdomain/public/vercel.svg -------------------------------------------------------------------------------- /examples/localizedSubdomain/sitemap-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localizedSubdomain/sitemap-generator.js -------------------------------------------------------------------------------- /examples/localizedSubdomain/src/pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localizedSubdomain/src/pages/about.js -------------------------------------------------------------------------------- /examples/localizedSubdomain/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/localizedSubdomain/src/pages/index.js -------------------------------------------------------------------------------- /examples/multipleSitemaps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/multipleSitemaps/.gitignore -------------------------------------------------------------------------------- /examples/multipleSitemaps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/multipleSitemaps/README.md -------------------------------------------------------------------------------- /examples/multipleSitemaps/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/multipleSitemaps/next.config.js -------------------------------------------------------------------------------- /examples/multipleSitemaps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/multipleSitemaps/package.json -------------------------------------------------------------------------------- /examples/multipleSitemaps/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/multipleSitemaps/public/favicon.ico -------------------------------------------------------------------------------- /examples/multipleSitemaps/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/multipleSitemaps/public/sitemap.xml -------------------------------------------------------------------------------- /examples/multipleSitemaps/public/sitemap1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/multipleSitemaps/public/sitemap1.xml -------------------------------------------------------------------------------- /examples/multipleSitemaps/public/sitemap2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/multipleSitemaps/public/sitemap2.xml -------------------------------------------------------------------------------- /examples/multipleSitemaps/public/sitemap3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/multipleSitemaps/public/sitemap3.xml -------------------------------------------------------------------------------- /examples/multipleSitemaps/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/multipleSitemaps/public/vercel.svg -------------------------------------------------------------------------------- /examples/multipleSitemaps/sitemap-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/multipleSitemaps/sitemap-generator.js -------------------------------------------------------------------------------- /examples/multipleSitemaps/src/pages/post/[id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/multipleSitemaps/src/pages/post/[id].js -------------------------------------------------------------------------------- /examples/simple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/simple/.gitignore -------------------------------------------------------------------------------- /examples/simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/simple/README.md -------------------------------------------------------------------------------- /examples/simple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/simple/package.json -------------------------------------------------------------------------------- /examples/simple/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/simple/public/favicon.ico -------------------------------------------------------------------------------- /examples/simple/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/simple/public/sitemap.xml -------------------------------------------------------------------------------- /examples/simple/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/simple/public/vercel.svg -------------------------------------------------------------------------------- /examples/simple/sitemap-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/simple/sitemap-generator.js -------------------------------------------------------------------------------- /examples/simple/src/pages/admin/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/simple/src/pages/admin/account.js -------------------------------------------------------------------------------- /examples/simple/src/pages/admin/cms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/simple/src/pages/admin/cms.js -------------------------------------------------------------------------------- /examples/simple/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/simple/src/pages/index.js -------------------------------------------------------------------------------- /examples/simple/src/pages/projects/computers/laptop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/simple/src/pages/projects/computers/laptop.js -------------------------------------------------------------------------------- /examples/simple/src/pages/projects/computers/pc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/simple/src/pages/projects/computers/pc.js -------------------------------------------------------------------------------- /examples/simple/src/pages/projects/phones/android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/simple/src/pages/projects/phones/android.js -------------------------------------------------------------------------------- /examples/simple/src/pages/projects/phones/ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/simple/src/pages/projects/phones/ios.js -------------------------------------------------------------------------------- /examples/typescript/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [["next/babel"]] 3 | } 4 | -------------------------------------------------------------------------------- /examples/typescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/typescript/.gitignore -------------------------------------------------------------------------------- /examples/typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/typescript/README.md -------------------------------------------------------------------------------- /examples/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/typescript/package.json -------------------------------------------------------------------------------- /examples/typescript/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/typescript/public/favicon.ico -------------------------------------------------------------------------------- /examples/typescript/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/typescript/public/sitemap.xml -------------------------------------------------------------------------------- /examples/typescript/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/typescript/public/vercel.svg -------------------------------------------------------------------------------- /examples/typescript/sitemap-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/typescript/sitemap-generator.ts -------------------------------------------------------------------------------- /examples/typescript/src/pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/typescript/src/pages/about.js -------------------------------------------------------------------------------- /examples/typescript/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/typescript/src/pages/index.js -------------------------------------------------------------------------------- /examples/typescript/src/pages/project/[id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/typescript/src/pages/project/[id].js -------------------------------------------------------------------------------- /examples/typescript/src/pages/works.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/typescript/src/pages/works.js -------------------------------------------------------------------------------- /examples/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/examples/typescript/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/package.json -------------------------------------------------------------------------------- /src/ConfigExtractor/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/src/ConfigExtractor/helpers.ts -------------------------------------------------------------------------------- /src/ConfigExtractor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/src/ConfigExtractor/index.ts -------------------------------------------------------------------------------- /src/ConfigExtractor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/src/ConfigExtractor/types.ts -------------------------------------------------------------------------------- /src/ConfigExtractor/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/src/ConfigExtractor/utils.ts -------------------------------------------------------------------------------- /src/SitemapGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/src/SitemapGenerator.ts -------------------------------------------------------------------------------- /src/SitemapIndexWriter/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/src/SitemapIndexWriter/constants.ts -------------------------------------------------------------------------------- /src/SitemapIndexWriter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/src/SitemapIndexWriter/index.ts -------------------------------------------------------------------------------- /src/SitemapIndexWriter/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/src/SitemapIndexWriter/types.ts -------------------------------------------------------------------------------- /src/SitemapWriter/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/src/SitemapWriter/constants.ts -------------------------------------------------------------------------------- /src/SitemapWriter/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/src/SitemapWriter/helpers.ts -------------------------------------------------------------------------------- /src/SitemapWriter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/src/SitemapWriter/index.ts -------------------------------------------------------------------------------- /src/SitemapWriter/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/src/SitemapWriter/types.ts -------------------------------------------------------------------------------- /src/SitemapWriter/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/src/SitemapWriter/utils.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergeyMyssak/nextjs-sitemap/HEAD/yarn.lock --------------------------------------------------------------------------------