upstream #1
12
README.md
12
README.md
@ -98,11 +98,13 @@ npx degit timlrx/tailwind-nextjs-starter-blog#typescript
|
|||||||
```
|
```
|
||||||
|
|
||||||
2. Personalize `siteMetadata.js` (site related information)
|
2. Personalize `siteMetadata.js` (site related information)
|
||||||
3. Personalize `authors/default.md` (main author)
|
3. Modify the content security policy in `next.config.js` if you want to use
|
||||||
4. Modify `projectsData.js`
|
any analytics provider or a commenting solution other than giscus.
|
||||||
5. Modify `headerNavLinks.js` to customize navigation links
|
4. Personalize `authors/default.md` (main author)
|
||||||
6. Add blog posts
|
5. Modify `projectsData.js`
|
||||||
7. Deploy on Vercel
|
6. Modify `headerNavLinks.js` to customize navigation links
|
||||||
|
7. Add blog posts
|
||||||
|
8. Deploy on Vercel
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
@ -79,11 +79,13 @@ I wanted it to be nearly as feature-rich as popular blogging templates like [bea
|
|||||||
|
|
||||||
1. JS (official support) - `npx degit https://github.com/timlrx/tailwind-nextjs-starter-blog.git` or TS (community support) - `npx degit timlrx/tailwind-nextjs-starter-blog#typescript`
|
1. JS (official support) - `npx degit https://github.com/timlrx/tailwind-nextjs-starter-blog.git` or TS (community support) - `npx degit timlrx/tailwind-nextjs-starter-blog#typescript`
|
||||||
2. Personalize `siteMetadata.js` (site related information)
|
2. Personalize `siteMetadata.js` (site related information)
|
||||||
3. Personalize `authors/default.md` (main author)
|
3. Modify the content security policy in `next.config.js` if you want to use
|
||||||
4. Modify `projectsData.js`
|
any analytics provider or a commenting solution other than giscus.
|
||||||
5. Modify `headerNavLinks.js` to customize navigation links
|
4. Personalize `authors/default.md` (main author)
|
||||||
6. Add blog posts
|
5. Modify `projectsData.js`
|
||||||
7. Deploy on Vercel
|
6. Modify `headerNavLinks.js` to customize navigation links
|
||||||
|
7. Add blog posts
|
||||||
|
8. Deploy on Vercel
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
|
@ -18,6 +18,8 @@ const siteMetadata = {
|
|||||||
linkedin: 'https://www.linkedin.com',
|
linkedin: 'https://www.linkedin.com',
|
||||||
locale: 'en-US',
|
locale: 'en-US',
|
||||||
analytics: {
|
analytics: {
|
||||||
|
// If you want to use an analytics provider you have to add it to the
|
||||||
|
// content security policy in the `next.config.js` file.
|
||||||
// supports plausible, simpleAnalytics, umami or googleAnalytics
|
// supports plausible, simpleAnalytics, umami or googleAnalytics
|
||||||
plausibleDataDomain: '', // e.g. tailwind-nextjs-starter-blog.vercel.app
|
plausibleDataDomain: '', // e.g. tailwind-nextjs-starter-blog.vercel.app
|
||||||
simpleAnalytics: false, // true or false
|
simpleAnalytics: false, // true or false
|
||||||
@ -30,6 +32,8 @@ const siteMetadata = {
|
|||||||
provider: 'buttondown',
|
provider: 'buttondown',
|
||||||
},
|
},
|
||||||
comment: {
|
comment: {
|
||||||
|
// If you want to use a commenting system other than giscus you have to add it to the
|
||||||
|
// content security policy in the `next.config.js` file.
|
||||||
// Select a provider and use the environment variables associated to it
|
// Select a provider and use the environment variables associated to it
|
||||||
// https://vercel.com/docs/environment-variables
|
// https://vercel.com/docs/environment-variables
|
||||||
provider: 'giscus', // supported providers: giscus, utterances, disqus
|
provider: 'giscus', // supported providers: giscus, utterances, disqus
|
||||||
|
Loading…
x
Reference in New Issue
Block a user