-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cc57a85
commit 2d32857
Showing
12 changed files
with
3,413 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
/coverage | ||
|
||
/.next/ | ||
/out/ | ||
|
||
/build | ||
|
||
.DS_Store | ||
*.pem | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
.pnpm-debug.log* | ||
|
||
.env*.local | ||
|
||
.vercel | ||
|
||
*.tsbuildinfo | ||
next-env.d.ts | ||
|
||
.idea | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"extends": [ | ||
"stylelint-config-recess-order", | ||
"stylelint-config-standard-scss" | ||
], | ||
"customSyntax": "postcss-scss", | ||
"overrides": [ | ||
{ | ||
"files": ["**/*.tsx"], | ||
"customSyntax": "postcss-styled" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,47 @@ | ||
# Nextjs Boilerplate | ||
|
||
## Summary | ||
|
||
This is a boilerplate for Next.js with TypeScript, styled-components. | ||
|
||
## Features | ||
|
||
- Nextjs | ||
- Typescript | ||
- Bundle Analyzer | ||
- Next.js | ||
|
||
- `/appDir` Feature | ||
- Bundle Analyzer | ||
|
||
- TypeScript | ||
|
||
- Strict Mode | ||
|
||
- Style | ||
|
||
- sass, scss | ||
- styled-components | ||
- Slim Pico.css | ||
|
||
- SEO Support | ||
|
||
- next-sitemap | ||
- next-seo | ||
|
||
- styled-components | ||
- Formatters, Linters | ||
|
||
- next-sitemap | ||
- next-seo | ||
- Eslint | ||
- Prettier | ||
- Stylelint | ||
|
||
- Eslint | ||
- Prettier | ||
- Stylelint | ||
- Dev Tools | ||
|
||
- Husky | ||
- Lint staged | ||
- Husky | ||
- Lint staged | ||
|
||
- Vercel | ||
- Deployment Support | ||
- Vercel Analytics | ||
|
||
## Customization | ||
|
||
1. customize name in `package.json` | ||
2. customize siteUrl in `next-sitemap.config.js` | ||
3. customize favicon in `src/app/favicon.ico` | ||
3. customize favicon in `src/app/favicon.ico` |
Oops, something went wrong.