├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── example ├── .gitignore ├── hi │ └── index.html ├── index.html ├── package.json ├── public │ ├── favicon.png │ └── vite.svg ├── src │ ├── api │ │ └── client.ts │ ├── entry.client.tsx │ ├── entry.server.tsx │ ├── handler.ts │ ├── main.tsx │ ├── root.tsx │ ├── routes │ │ ├── app.tsx │ │ ├── app │ │ │ ├── about.tsx │ │ │ ├── about │ │ │ │ ├── company.tsx │ │ │ │ ├── company │ │ │ │ │ ├── argano.tsx │ │ │ │ │ └── uv.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── reseller.tsx │ │ │ ├── contact.tsx │ │ │ ├── contact │ │ │ │ ├── chat.tsx │ │ │ │ └── email.tsx │ │ │ └── index.tsx │ │ └── index.tsx │ └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock ├── logo.svg ├── package.json ├── release.txt ├── src ├── index.ts ├── names.ts ├── remix │ ├── metadata.ts │ └── routes.ts ├── stringify │ ├── liveReload.ts │ ├── manifestInject.ts │ ├── pages.ts │ └── serverBuild.ts └── types.ts ├── tsconfig.json ├── tsup.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/README.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/hi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/hi/index.html -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/index.html -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/package.json -------------------------------------------------------------------------------- /example/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/public/favicon.png -------------------------------------------------------------------------------- /example/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/public/vite.svg -------------------------------------------------------------------------------- /example/src/api/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/api/client.ts -------------------------------------------------------------------------------- /example/src/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/entry.client.tsx -------------------------------------------------------------------------------- /example/src/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/entry.server.tsx -------------------------------------------------------------------------------- /example/src/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/handler.ts -------------------------------------------------------------------------------- /example/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/main.tsx -------------------------------------------------------------------------------- /example/src/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/root.tsx -------------------------------------------------------------------------------- /example/src/routes/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/routes/app.tsx -------------------------------------------------------------------------------- /example/src/routes/app/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/routes/app/about.tsx -------------------------------------------------------------------------------- /example/src/routes/app/about/company.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/routes/app/about/company.tsx -------------------------------------------------------------------------------- /example/src/routes/app/about/company/argano.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/routes/app/about/company/argano.tsx -------------------------------------------------------------------------------- /example/src/routes/app/about/company/uv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/routes/app/about/company/uv.tsx -------------------------------------------------------------------------------- /example/src/routes/app/about/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/routes/app/about/index.tsx -------------------------------------------------------------------------------- /example/src/routes/app/about/reseller.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/routes/app/about/reseller.tsx -------------------------------------------------------------------------------- /example/src/routes/app/contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/routes/app/contact.tsx -------------------------------------------------------------------------------- /example/src/routes/app/contact/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/routes/app/contact/chat.tsx -------------------------------------------------------------------------------- /example/src/routes/app/contact/email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/routes/app/contact/email.tsx -------------------------------------------------------------------------------- /example/src/routes/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/routes/app/index.tsx -------------------------------------------------------------------------------- /example/src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/src/routes/index.tsx -------------------------------------------------------------------------------- /example/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/tsconfig.node.json -------------------------------------------------------------------------------- /example/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/vite.config.ts -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/package.json -------------------------------------------------------------------------------- /release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/release.txt -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/src/names.ts -------------------------------------------------------------------------------- /src/remix/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/src/remix/metadata.ts -------------------------------------------------------------------------------- /src/remix/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/src/remix/routes.ts -------------------------------------------------------------------------------- /src/stringify/liveReload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/src/stringify/liveReload.ts -------------------------------------------------------------------------------- /src/stringify/manifestInject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/src/stringify/manifestInject.ts -------------------------------------------------------------------------------- /src/stringify/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/src/stringify/pages.ts -------------------------------------------------------------------------------- /src/stringify/serverBuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/src/stringify/serverBuild.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/tsup.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yracnet/vite-plugin-remix/HEAD/yarn.lock --------------------------------------------------------------------------------