diff --git a/commerce.config.json b/commerce.config.json index ad72b58de..ad63a93d3 100644 --- a/commerce.config.json +++ b/commerce.config.json @@ -1,4 +1,5 @@ { + "provider": "vendure", "features": { "cart": true, "search": true, diff --git a/package.json b/package.json index 95b46c497..60b7f2496 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "nextjs-commerce", "version": "1.0.0", "scripts": { - "dev": "NODE_OPTIONS='--inspect' next dev", + "dev": "NODE_OPTIONS='--inspect' next dev -p 8000", "build": "next build", "start": "next start", "analyze": "BUNDLE_ANALYZE=both yarn build", diff --git a/tsconfig.json b/tsconfig.json index 340929669..72608f830 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -23,8 +23,8 @@ "@components/*": ["components/*"], "@commerce": ["framework/commerce"], "@commerce/*": ["framework/commerce/*"], - "@framework": ["framework/local"], - "@framework/*": ["framework/local/*"] + "@framework": ["framework/vendure"], + "@framework/*": ["framework/vendure/*"] } }, "include": ["next-env.d.ts", "**/*.d.ts", "**/*.ts", "**/*.tsx", "**/*.js"],