{"id":20604336,"url":"https://github.com/bymattlee/bymattlee-nuxt-starter","last_synced_at":"2025-08-21T22:24:31.860Z","repository":{"id":89630742,"uuid":"332139121","full_name":"bymattlee/bymattlee-nuxt-starter","owner":"bymattlee","description":"A starter boilerplate powered by Vue, Nuxt, Sanity and Tailwind CSS.","archived":false,"fork":false,"pushed_at":"2023-03-04T23:49:31.000Z","size":3035,"stargazers_count":15,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-15T02:40:55.539Z","etag":null,"topics":["animations","babel","es6","nuxt","nuxtjs","sanity","starter-template","static-site-generator","tailwind-css","utility-classes","vue","vuejs"],"latest_commit_sha":null,"homepage":"https://bymattlee-nuxt-starter.netlify.app/","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bymattlee.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-01-23T05:57:43.000Z","updated_at":"2025-02-19T05:18:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"2d05531a-af83-4b4f-967c-aeef2bb68044","html_url":"https://github.com/bymattlee/bymattlee-nuxt-starter","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/bymattlee/bymattlee-nuxt-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bymattlee%2Fbymattlee-nuxt-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bymattlee%2Fbymattlee-nuxt-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bymattlee%2Fbymattlee-nuxt-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bymattlee%2Fbymattlee-nuxt-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bymattlee","download_url":"https://codeload.github.com/bymattlee/bymattlee-nuxt-starter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bymattlee%2Fbymattlee-nuxt-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271553424,"owners_count":24779822,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-21T02:00:08.990Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["animations","babel","es6","nuxt","nuxtjs","sanity","starter-template","static-site-generator","tailwind-css","utility-classes","vue","vuejs"],"created_at":"2024-11-16T09:22:14.152Z","updated_at":"2025-08-21T22:24:31.839Z","avatar_url":"https://github.com/bymattlee.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"![ByMattLee Nuxt Starter Screenshot](http://hosted.bymattlee.com/github/bymattlee-nuxt-starter-screenshot.png)\n\n# ByMattLee Nuxt Starter\n\nA starter boilerplate powered by [Vue](https://vuejs.org/), [Nuxt](https://nuxtjs.org/), [Sanity](https://www.sanity.io/) and [Tailwind CSS](https://tailwindcss.com/).\n\n[VIEW DEMO](https://bymattlee-nuxt-starter.netlify.app/)\n\n---\n\n## Installation\n\n##### 1. Install Node 16.17.1 LTS: \u003chttps://nodejs.org/\u003e\n\n##### 2. Install Yarn\n\n```\n$ npm i -g yarn\n```\n\n##### 3. Install all dependencies\n\n```\n$ yarn\n```\n\n---\n\n## Configuration\n\nIn `nuxt.config.js`, update Sanity options and environment URLs for project compilation.\n\n---\n\n## Use\n\n##### Serve With Hot Reload\n\n```\n$ yarn dev\n```\n\n##### Build For Production\n\n```\n$ yarn build\n```\n\n##### Build Static Files\n\n```\n$ yarn generate\n```\n\n##### Launch Server\n\n```\n$ yarn start\n```\n\n---\n\n## General Features\n\n- Utilizes Nuxt's 'static' mode to generate HTML files for every page\n- Data is coming from the Sanity Cloud API. This pairs perfectly with the [ByMattLee Sanity Studio Starter](https://github.com/bymattlee/bymattlee-sanity-studio-starter)\n- Features Tailwind CSS with PurgeCSS for production builds\n- Includes RSS feed, robots.txt, sitemap.xml generation\n\n---\n\n## Tailwind CSS Notes\n\n- All Tailwind settings can be found in `./tailwind.config.js`\n- Most styles should be written as utility classes in the template markup but custom SCSS can be used for unique properties and/or magic numbers\n- Utilize the [`@apply`](https://tailwindcss.com/docs/functions-and-directives#apply) directive when writing custom SCSS for efficiency:\n\n```scss\nsvg {\n  @apply inline-block fill-current;\n}\n```\n\n- Tailwind settings can be accessed with the [`theme()`](https://tailwindcss.com/docs/functions-and-directives#theme) function:\n\n```scss\n.button {\n  animation-duration: theme('transitionDuration.normal');\n}\n```\n\n- Media queries can be used with the shorthand `screen()` function:\n\n```scss\n.button {\n  margin-right: 2.8rem;\n  @screen sm {\n    margin-right: 4.2rem;\n  }\n}\n```\n\n---\n\n## Contact\n\n- Matt Lee - `@bymattlee` on most platforms\n- Visit my website at [bymattlee.com](https://bymattlee.com)\n\n[![Twitter Follow](https://img.shields.io/twitter/follow/bymattlee?style=social)](https://twitter.com/bymattlee)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbymattlee%2Fbymattlee-nuxt-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbymattlee%2Fbymattlee-nuxt-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbymattlee%2Fbymattlee-nuxt-starter/lists"}