-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(stripe)!: major version about for stripe (#39)
Co-authored-by: giraud florent <[email protected]>
- Loading branch information
Showing
7 changed files
with
3,322 additions
and
13,097 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
// @ts-check | ||
import { createConfigForNuxt } from '@nuxt/eslint-config/flat' | ||
import { createConfigForNuxt } from "@nuxt/eslint-config/flat"; | ||
|
||
export default createConfigForNuxt({ | ||
features: { | ||
tooling: true, | ||
stylistic: true, | ||
// stylistic: true, | ||
}, | ||
dirs: { | ||
src: [ | ||
'./playground', | ||
], | ||
src: ["./playground"], | ||
}, | ||
}) | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
export default defineNuxtConfig({ | ||
modules: ['../src/module'], | ||
modules: ["../src/module"], | ||
|
||
stripe: { | ||
client: { | ||
key: 'pk_test_123', | ||
key: process.env.STRIPE_PUBLIC_KEY, | ||
}, | ||
server: { | ||
key: 'sk_test_123', | ||
key: process.env.STRIPE_SECRET_KEY, | ||
}, | ||
}, | ||
}) | ||
compatibilityDate: "2024-10-07", | ||
}); |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.