├── .changeset ├── README.md └── config.json ├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .node-version ├── README.md ├── docs ├── _index.md └── quick-start.md ├── package.json ├── packages ├── docs │ ├── .eslintrc │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── api.server.ts │ │ ├── entry.client.tsx │ │ ├── entry.server.tsx │ │ ├── markdown.server.ts │ │ ├── root.tsx │ │ └── routes │ │ │ ├── docs.$.tsx │ │ │ ├── docs.index.tsx │ │ │ ├── docs.tsx │ │ │ └── index.tsx │ ├── integration │ │ └── docs.spec.ts │ ├── package.json │ ├── playwright.config.ts │ ├── public │ │ ├── _headers │ │ └── favicon.ico │ ├── remix.config.js │ ├── remix.env.d.ts │ ├── tailwind.config.js │ └── tsconfig.json └── remix-ssg │ ├── CHANGELOG.md │ ├── README.md │ ├── bin │ └── remix-ssg.cjs │ ├── lib │ ├── cli.mjs │ ├── data-override.ts │ ├── empty-modules-plugin-override.cjs │ ├── links-override.ts │ └── node-override-require.cjs │ └── package.json └── turbo.json /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .turbo 3 | node_modules 4 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 16.7.0 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/README.md -------------------------------------------------------------------------------- /docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/docs/_index.md -------------------------------------------------------------------------------- /docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/docs/quick-start.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/package.json -------------------------------------------------------------------------------- /packages/docs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/.eslintrc -------------------------------------------------------------------------------- /packages/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/.gitignore -------------------------------------------------------------------------------- /packages/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/README.md -------------------------------------------------------------------------------- /packages/docs/app/api.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/app/api.server.ts -------------------------------------------------------------------------------- /packages/docs/app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/app/entry.client.tsx -------------------------------------------------------------------------------- /packages/docs/app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/app/entry.server.tsx -------------------------------------------------------------------------------- /packages/docs/app/markdown.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/app/markdown.server.ts -------------------------------------------------------------------------------- /packages/docs/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/app/root.tsx -------------------------------------------------------------------------------- /packages/docs/app/routes/docs.$.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/app/routes/docs.$.tsx -------------------------------------------------------------------------------- /packages/docs/app/routes/docs.index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/app/routes/docs.index.tsx -------------------------------------------------------------------------------- /packages/docs/app/routes/docs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/app/routes/docs.tsx -------------------------------------------------------------------------------- /packages/docs/app/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/app/routes/index.tsx -------------------------------------------------------------------------------- /packages/docs/integration/docs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/integration/docs.spec.ts -------------------------------------------------------------------------------- /packages/docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/package.json -------------------------------------------------------------------------------- /packages/docs/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/playwright.config.ts -------------------------------------------------------------------------------- /packages/docs/public/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/public/_headers -------------------------------------------------------------------------------- /packages/docs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/public/favicon.ico -------------------------------------------------------------------------------- /packages/docs/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/remix.config.js -------------------------------------------------------------------------------- /packages/docs/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/remix.env.d.ts -------------------------------------------------------------------------------- /packages/docs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/tailwind.config.js -------------------------------------------------------------------------------- /packages/docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/docs/tsconfig.json -------------------------------------------------------------------------------- /packages/remix-ssg/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/remix-ssg/CHANGELOG.md -------------------------------------------------------------------------------- /packages/remix-ssg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/remix-ssg/README.md -------------------------------------------------------------------------------- /packages/remix-ssg/bin/remix-ssg.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/remix-ssg/bin/remix-ssg.cjs -------------------------------------------------------------------------------- /packages/remix-ssg/lib/cli.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/remix-ssg/lib/cli.mjs -------------------------------------------------------------------------------- /packages/remix-ssg/lib/data-override.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/remix-ssg/lib/data-override.ts -------------------------------------------------------------------------------- /packages/remix-ssg/lib/empty-modules-plugin-override.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/remix-ssg/lib/empty-modules-plugin-override.cjs -------------------------------------------------------------------------------- /packages/remix-ssg/lib/links-override.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/remix-ssg/lib/links-override.ts -------------------------------------------------------------------------------- /packages/remix-ssg/lib/node-override-require.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/remix-ssg/lib/node-override-require.cjs -------------------------------------------------------------------------------- /packages/remix-ssg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/packages/remix-ssg/package.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacob-ebey/remix-ssg/HEAD/turbo.json --------------------------------------------------------------------------------