├── .gitignore ├── .npmignore ├── README.md ├── app ├── App.js ├── entry-browser.js ├── entry-server.js ├── global.css ├── posts │ ├── code-splitting.md │ ├── primary-components.md │ ├── quick-start.md │ ├── scroll-restoration.md │ └── server-rendering.md └── routes │ ├── $post.js │ ├── 404.js │ ├── 500.js │ └── index.js ├── blog.config.json ├── data ├── post.js └── routes │ ├── $post.js │ └── index.js ├── index.js ├── package.json ├── patches └── @remix-run+core+0.8.0.patch ├── public └── favicon.ico ├── remix.config.js ├── vercel.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | !public/build/_shared/node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/README.md -------------------------------------------------------------------------------- /app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/app/App.js -------------------------------------------------------------------------------- /app/entry-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/app/entry-browser.js -------------------------------------------------------------------------------- /app/entry-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/app/entry-server.js -------------------------------------------------------------------------------- /app/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/app/global.css -------------------------------------------------------------------------------- /app/posts/code-splitting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/app/posts/code-splitting.md -------------------------------------------------------------------------------- /app/posts/primary-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/app/posts/primary-components.md -------------------------------------------------------------------------------- /app/posts/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/app/posts/quick-start.md -------------------------------------------------------------------------------- /app/posts/scroll-restoration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/app/posts/scroll-restoration.md -------------------------------------------------------------------------------- /app/posts/server-rendering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/app/posts/server-rendering.md -------------------------------------------------------------------------------- /app/routes/$post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/app/routes/$post.js -------------------------------------------------------------------------------- /app/routes/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/app/routes/404.js -------------------------------------------------------------------------------- /app/routes/500.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/app/routes/500.js -------------------------------------------------------------------------------- /app/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/app/routes/index.js -------------------------------------------------------------------------------- /blog.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/blog.config.json -------------------------------------------------------------------------------- /data/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/data/post.js -------------------------------------------------------------------------------- /data/routes/$post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/data/routes/$post.js -------------------------------------------------------------------------------- /data/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/data/routes/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/package.json -------------------------------------------------------------------------------- /patches/@remix-run+core+0.8.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/patches/@remix-run+core+0.8.0.patch -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/remix.config.js -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/vercel.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanflorence/remix-blog-vercel/HEAD/yarn.lock --------------------------------------------------------------------------------