Skip to content

Commit

Permalink
add sample app
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasHiltl committed Oct 26, 2024
1 parent 3e6260c commit ed19bd7
Show file tree
Hide file tree
Showing 12 changed files with 4,624 additions and 0 deletions.
3 changes: 3 additions & 0 deletions widget/samples/next-app/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["next/core-web-vitals", "next/typescript"]
}
40 changes: 40 additions & 0 deletions widget/samples/next-app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

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

# env files (can opt-in for commiting if needed)
.env*

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
3 changes: 3 additions & 0 deletions widget/samples/next-app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Next.js Openchangelog Sample

This repo shows how to embed an Openchangelog changelog into your Next.js app
7 changes: 7 additions & 0 deletions widget/samples/next-app/next.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
/* config options here */
};

export default nextConfig;
Loading

0 comments on commit ed19bd7

Please sign in to comment.