{"id":21660564,"url":"https://github.com/shimotaroo/next-typescirpt-tailwindcss-template","last_synced_at":"2026-04-13T04:42:12.545Z","repository":{"id":110677340,"uuid":"423516371","full_name":"shimotaroo/Next-TypeScirpt-TailwindCSS-Template","owner":"shimotaroo","description":"Next.js+TypeScript+Tailwind CSSのテンプレート（Vercelにデプロイ済）","archived":false,"fork":false,"pushed_at":"2021-11-21T07:44:21.000Z","size":211,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-11T12:08:42.849Z","etag":null,"topics":["nextjs","react","tailwindcss","typescript","vercel"],"latest_commit_sha":null,"homepage":"https://next-type-scirpt-tailwind-css-template.vercel.app/","language":"TypeScript","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/shimotaroo.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-11-01T15:26:33.000Z","updated_at":"2022-07-14T06:29:36.000Z","dependencies_parsed_at":null,"dependency_job_id":"fef48a77-c87d-4591-a8c3-bcfe81eb887f","html_url":"https://github.com/shimotaroo/Next-TypeScirpt-TailwindCSS-Template","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/shimotaroo/Next-TypeScirpt-TailwindCSS-Template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shimotaroo%2FNext-TypeScirpt-TailwindCSS-Template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shimotaroo%2FNext-TypeScirpt-TailwindCSS-Template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shimotaroo%2FNext-TypeScirpt-TailwindCSS-Template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shimotaroo%2FNext-TypeScirpt-TailwindCSS-Template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shimotaroo","download_url":"https://codeload.github.com/shimotaroo/Next-TypeScirpt-TailwindCSS-Template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shimotaroo%2FNext-TypeScirpt-TailwindCSS-Template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31740266,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T03:27:07.512Z","status":"ssl_error","status_checked_at":"2026-04-13T03:26:53.610Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["nextjs","react","tailwindcss","typescript","vercel"],"created_at":"2024-11-25T09:34:31.233Z","updated_at":"2026-04-13T04:42:12.529Z","avatar_url":"https://github.com/shimotaroo.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Next.js + TypeScript + Tailwind CSS Template\n\n## support\n\n- M1 Mac\n\n## start development server\n\n```sh\nyarn dev\n```\n\naccess to http://localhost:3000/\n\n## environment construction procedure\n### create project of Next.js + TypeScript\n\nexecute the command\n\n```sh\n# yarn\nyarn create next-app next-ts-tailwind --typescript\n\n# npm\nnpx create-next-app@latest --ts\n```\n\n reference: https://nextjs.org/docs/basic-features/typescript\n\n### introduction Tailwind CSS\n\nexecute the command\n\n```sh\n# yarn\nyarn add -D tailwindcss@latest postcss@latest autoprefixer@latest\n\n# npm\nnpm install -D tailwindcss@latest postcss@latest autoprefixer@latest\n```\n\nreference: https://fwywd.com/tech/next-tailwind\n\n### create config file of Tailwind CSS\n\nexecute the command\n\n```sh\n# yarn\nyarn tailwindcss init -p\n\n# npm\nnpx tailwindcss init -p\n```\n\nreference: https://fwywd.com/tech/next-tailwind\n\n### edit tailwind.config\n\nadd the code\n\n```diff\nmodule.exports = {\n+ mode: 'jit',\n- purge: [],\n+ purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],\n  darkMode: false, // or 'media' or 'class'\n  theme: {\n    extend: {},\n  },\n  variants: {\n    extend: {},\n  },\n  plugins: [],\n}\n```\n\nreference: https://fwywd.com/tech/next-tailwind\n\n### make Tailwind CSS apply globally\n\nedit `pages/_app.tsx`\n\n```diff\n- import '../styles/globals.css'\n+ import 'tailwindcss/tailwind.css';\nimport type { AppProps } from 'next/app'\n\nfunction MyApp({ Component, pageProps }: AppProps) {\n  return \u003cComponent {...pageProps} /\u003e\n}\n\nexport default MyApp\n```\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshimotaroo%2Fnext-typescirpt-tailwindcss-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshimotaroo%2Fnext-typescirpt-tailwindcss-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshimotaroo%2Fnext-typescirpt-tailwindcss-template/lists"}