├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .prettierignore ├── .tool-versions ├── LICENSE ├── README.md ├── favicon.svg ├── index.html ├── package.json ├── sandbox └── index.ts ├── src ├── fixtures │ ├── absolute-links-transformed.ts │ ├── absolute-links.ts │ ├── relative-links-transformed.ts │ └── relative-links.ts ├── index.test.ts ├── index.ts ├── steps.test.ts ├── steps.ts ├── test-utils.ts ├── transform.test.ts ├── transform.ts ├── utils.test.ts └── utils.ts ├── tsconfig.json └── vite.config.js /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 18.12.1 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/README.md -------------------------------------------------------------------------------- /favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/favicon.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/package.json -------------------------------------------------------------------------------- /sandbox/index.ts: -------------------------------------------------------------------------------- 1 | console.log("This is my local entry point."); 2 | -------------------------------------------------------------------------------- /src/fixtures/absolute-links-transformed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/src/fixtures/absolute-links-transformed.ts -------------------------------------------------------------------------------- /src/fixtures/absolute-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/src/fixtures/absolute-links.ts -------------------------------------------------------------------------------- /src/fixtures/relative-links-transformed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/src/fixtures/relative-links-transformed.ts -------------------------------------------------------------------------------- /src/fixtures/relative-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/src/fixtures/relative-links.ts -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/steps.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/src/steps.test.ts -------------------------------------------------------------------------------- /src/steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/src/steps.ts -------------------------------------------------------------------------------- /src/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/src/test-utils.ts -------------------------------------------------------------------------------- /src/transform.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/src/transform.test.ts -------------------------------------------------------------------------------- /src/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/src/transform.ts -------------------------------------------------------------------------------- /src/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/src/utils.test.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmacarthur/vite-plugin-proxy-page/HEAD/vite.config.js --------------------------------------------------------------------------------