forked from vendure-ecommerce/remix-ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempt to fix netlify deploy issues
- Loading branch information
1 parent
edad5f1
commit 7abd6aa
Showing
4 changed files
with
4 additions
and
25 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
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,12 +1,5 @@ | ||
import { createShopifyProvider } from "./models/ecommerce-providers/shopify.server"; | ||
import { createSwrRedisCache } from "./models/request-response-caches/swr-redis-cache.server"; | ||
|
||
import redisClient from "./redis.server"; | ||
import { createVendureProvider } from '~/models/ecommerce-providers/vendure.server'; | ||
|
||
let commerce = createVendureProvider({ | ||
shop: process.env.SHOPIFY_STORE!, | ||
maxAgeSeconds: 60, | ||
}); | ||
let commerce = createVendureProvider({}); | ||
|
||
export default commerce; |
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
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,5 +1,5 @@ | ||
[build] | ||
command = "remix build" | ||
command = "npm build" | ||
functions = "netlify/functions" | ||
publish = "public" | ||
|
||
|