Skip to content

Commit

Permalink
blog init
Browse files Browse the repository at this point in the history
  • Loading branch information
Ugur Oruc authored and Ugur Oruc committed Dec 18, 2022
0 parents commit b98212f
Show file tree
Hide file tree
Showing 20 changed files with 5,836 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Dependencies
/node_modules

# Next.js
/.next/
/out/

# Production
/build

# Misc
.DS_Store

# Debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# Local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

# Vercel
.vercel
3 changes: 3 additions & 0 deletions middleware.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export { locales as middleware } from 'nextra/locales'


5 changes: 5 additions & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
6 changes: 6 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const withNextra = require('nextra')({
theme: 'nextra-theme-blog',
themeConfig: './theme.config.jsx',
})

module.exports = withNextra()
Loading

0 comments on commit b98212f

Please sign in to comment.