Skip to content

Commit 23e25cd

Browse files
authored
Merge pull request #251 from w3bdesign/dev
Fix cors issue
2 parents c469ba4 + 6182b5b commit 23e25cd

File tree

5 files changed

+193
-219
lines changed

5 files changed

+193
-219
lines changed

.eslintrc.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ module.exports = {
1010
extends: [
1111
'@nuxtjs',
1212
'prettier',
13-
'prettier/vue',
1413
'plugin:prettier/recommended',
1514
'plugin:nuxt/recommended',
1615
],
Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,7 @@
1-
mutation CHECKOUT_MUTATION($input: CheckoutInput!) {
2-
checkout(input: $input) {
3-
clientMutationId
4-
order {
5-
id
6-
databaseId
7-
refunds {
8-
nodes {
9-
amount
10-
}
11-
}
12-
status
1+
mutation CHECKOUT_MUTATION($input: CheckoutInput!) {
2+
checkout(input: $input) {
3+
result
4+
redirect
135
}
14-
result
15-
redirect
166
}
17-
}
7+

nuxt.config.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,6 @@ export default {
3333

3434
// Auto import components (https://go.nuxtjs.dev/config-components)
3535
components: true,
36-
/* components: [
37-
'~/components/Cart',
38-
'~/components/Category',
39-
'~/components/Checkout',
40-
'~/components/Footer',
41-
'~/components/Header',
42-
'~/components/Index',
43-
'~/components/Products',
44-
'~/components/Spinner',
45-
], */
4636

4737
// Modules for dev and build (recommended) (https://go.nuxtjs.dev/config-modules)
4838
buildModules: [

0 commit comments

Comments
 (0)