Skip to content

Commit

Permalink
Merge pull request #229 from Vandivier/189-upgrade-blitz-subv-9
Browse files Browse the repository at this point in the history
chore: upgrade to blitz 2.0.9
  • Loading branch information
Vandivier authored May 22, 2024
2 parents de06f3e + 705646b commit 4814ce6
Show file tree
Hide file tree
Showing 100 changed files with 3,643 additions and 4,169 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
57 changes: 41 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,28 +1,52 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
node_modules
node_modules/
.pnp
.pnp.js
.pnp.*
.npm
web_modules/

# Yarn related
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
.pnp.*
.npm
web_modules/

# blitz
/.blitz/
# testing
/coverage

# next.js
/.next/
*.sqlite
*.sqlite-journal
.now
*.sqlite*
*.sqlite-journal

# Blitz.js
.blitz**
blitz-log.log
# ignore physical backups of blitz db
db/bak.user*.json
db/premium-checklists.json

# production/build
/out/

# misc
.DS_Store
*.pem

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

# local env files
.env*
.env.local
.env.*.local
.envrc
Expand All @@ -31,6 +55,9 @@ blitz-log.log
logs
*.log

# Vercel
.vercel

# Runtime data
pids
*.pid
Expand All @@ -44,23 +71,21 @@ pids
lib-cov

# Caches
*.tsbuildinfo
.yarn-integrity
.eslintcache
.node_repl_history
.yarn-integrity
*.tsbuildinfo
next-env.d.ts

# Serverless directories
.serverless/

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# ignore physical backups of blitz db
db/bak.user*.json
db/premium-checklists.json
.vercel


# Stripe and Teachable data
stripe_paymen*.json
teachable_dat*.json

# Database backups
db/*.bak.json
1 change: 1 addition & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
/// <reference types="next/navigation-types/compat/navigation" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
3 changes: 3 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ const { withBlitz } = require("@blitzjs/next")
* @type {import('@blitzjs/next').BlitzConfig}
**/
const config = {
experimental: {
typedRoutes: true,
},
images: {
domains: ["files.cdn.printful.com"],
},
Expand Down
Loading

0 comments on commit 4814ce6

Please sign in to comment.