Skip to content

Commit

Permalink
Merge pull request #2 from noriega3/v4
Browse files Browse the repository at this point in the history
core: v4 wip
  • Loading branch information
noriega3 authored Jul 9, 2022
2 parents 234a178 + c1c3054 commit b25901f
Show file tree
Hide file tree
Showing 23 changed files with 9,258 additions and 13,315 deletions.
36 changes: 31 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,41 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
.history/
node_modules/
.cache/
public
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
build/
/build

# misc
.DS_Store
*.pem
/.history

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

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

# vercel
.vercel

# nextra
public/feed.xml

# typescript
*.tsbuildinfo
21 changes: 0 additions & 21 deletions gatsby-config.js

This file was deleted.

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.
12 changes: 12 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/** @type {import('next').NextConfig} */
const withNextra = require('nextra')({
theme: 'nextra-theme-blog',
themeConfig: './theme.config.js',
// optional: add `unstable_staticImage: true` to enable Nextra's auto image import
})

const nextConfig = {
// any configs you need
}

module.exports = withNextra(nextConfig)
Loading

0 comments on commit b25901f

Please sign in to comment.