Skip to content

Commit

Permalink
Small post-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksongoode committed Nov 7, 2024
1 parent 20215dc commit 36aaa14
Show file tree
Hide file tree
Showing 6 changed files with 162 additions and 148 deletions.
1 change: 0 additions & 1 deletion components/NotionPageHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import * as types from 'notion-types'
import { IoMoonSharp } from 'react-icons/io5'
import { IoSunnyOutline } from 'react-icons/io5'
import cs from 'classnames'
import * as React from 'react'
import { Breadcrumbs, Header, Search, useNotionContext } from 'react-notion-x'

import { isSearchEnabled, navigationLinks, navigationStyle } from '@/lib/config'
Expand Down
4 changes: 2 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default withBundleAnalyzer({
protocol: 'https',
hostname: 'nline.io',
pathname: '**'
}
},
{
protocol: 'https',
hostname: 'notionusercontent.com',
Expand All @@ -82,4 +82,4 @@ export default withBundleAnalyzer({
)
return config
}
})
})
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"dev": "next dev",
"build": "next build",
"start": "next start",
"deploy": "vercel deploy",
Expand Down Expand Up @@ -45,6 +45,7 @@
"fathom-client": "^3.7.2",
"got": "^14.4.4",
"isomorphic-unfetch": "^4.0.2",
"ky": "^1.7.2",
"lqip-modern": "^2.1.0",
"next": "15.0.2",
"notion-client": "^7.0.1",
Expand All @@ -54,9 +55,9 @@
"p-memoize": "^7.1.1",
"posthog-js": "^1.181.0",
"prismjs": "^1.29.0",
"react": "19.0.0-rc-66855b96-20241106",
"react": "^18.2.0",
"react-body-classname": "^1.3.1",
"react-dom": "19.0.0-rc-66855b96-20241106",
"react-dom": "^18.2.0",
"react-icons": "^5.3.0",
"react-notion-x": "^7.0.1",
"react-tweet-embed": "^2.0.0",
Expand All @@ -69,7 +70,7 @@
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/got": "^9.6.12",
"@types/node": "^22.9.0",
"@types/react": "npm:[email protected]",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"cross-env": "^7.0.3",
Expand All @@ -83,7 +84,9 @@
},
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]"
"@types/react": "^18.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}
}
1 change: 1 addition & 0 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// global styles shared across the entire site
import * as React from 'react'

import type { AppProps } from 'next/app'
import localFont from 'next/font/local'
import { Analytics } from '@vercel/analytics/react'
Expand Down
Loading

0 comments on commit 36aaa14

Please sign in to comment.