├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __snapshots__ └── generate.test.js.snap ├── eslint.config.mjs ├── example ├── Dockerfile ├── README.md ├── next.config.js ├── nginx.conf ├── package.json ├── pages │ ├── [foo] │ │ ├── [bar] │ │ │ ├── [id].js │ │ │ └── hello.js │ │ └── index.js │ ├── hello │ │ ├── index.js │ │ └── world.js │ └── index.js └── yarn.lock ├── generate.js ├── generate.test.js ├── package.json └── yarn.lock /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/README.md -------------------------------------------------------------------------------- /__snapshots__/generate.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/__snapshots__/generate.test.js.snap -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /example/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/example/Dockerfile -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/example/README.md -------------------------------------------------------------------------------- /example/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/example/next.config.js -------------------------------------------------------------------------------- /example/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/example/nginx.conf -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/example/package.json -------------------------------------------------------------------------------- /example/pages/[foo]/[bar]/[id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/example/pages/[foo]/[bar]/[id].js -------------------------------------------------------------------------------- /example/pages/[foo]/[bar]/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/example/pages/[foo]/[bar]/hello.js -------------------------------------------------------------------------------- /example/pages/[foo]/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/example/pages/[foo]/index.js -------------------------------------------------------------------------------- /example/pages/hello/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/example/pages/hello/index.js -------------------------------------------------------------------------------- /example/pages/hello/world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/example/pages/hello/world.js -------------------------------------------------------------------------------- /example/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/example/pages/index.js -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/generate.js -------------------------------------------------------------------------------- /generate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/generate.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geops/next-nginx-routes/HEAD/yarn.lock --------------------------------------------------------------------------------