├── .all-contributorsrc ├── .editorconfig ├── .gitignore ├── .templates ├── .editorconfig ├── .gitignore ├── template-sample-react-component │ ├── index.jsx │ └── index.scss └── template-sample │ └── index.js ├── README.md ├── package.json ├── rollup.config.js ├── src ├── index.test.ts └── index.ts ├── template.config.js └── tsconfig.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegano/next-http-proxy-middleware/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegano/next-http-proxy-middleware/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegano/next-http-proxy-middleware/HEAD/.gitignore -------------------------------------------------------------------------------- /.templates/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegano/next-http-proxy-middleware/HEAD/.templates/.editorconfig -------------------------------------------------------------------------------- /.templates/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegano/next-http-proxy-middleware/HEAD/.templates/.gitignore -------------------------------------------------------------------------------- /.templates/template-sample-react-component/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegano/next-http-proxy-middleware/HEAD/.templates/template-sample-react-component/index.jsx -------------------------------------------------------------------------------- /.templates/template-sample-react-component/index.scss: -------------------------------------------------------------------------------- 1 | .__templateNameToParamCase__ { 2 | display: inline-block; 3 | } 4 | -------------------------------------------------------------------------------- /.templates/template-sample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegano/next-http-proxy-middleware/HEAD/.templates/template-sample/index.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegano/next-http-proxy-middleware/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegano/next-http-proxy-middleware/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegano/next-http-proxy-middleware/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegano/next-http-proxy-middleware/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegano/next-http-proxy-middleware/HEAD/src/index.ts -------------------------------------------------------------------------------- /template.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegano/next-http-proxy-middleware/HEAD/template.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stegano/next-http-proxy-middleware/HEAD/tsconfig.json --------------------------------------------------------------------------------