diff --git a/.env.example b/.env.example index f7fa990d4..c6cb59824 100644 --- a/.env.example +++ b/.env.example @@ -2,4 +2,4 @@ COMPANY_NAME="Vercel Inc." SITE_NAME="Next.js Commerce" SHOPIFY_REVALIDATION_SECRET="" SHOPIFY_STOREFRONT_ACCESS_TOKEN="" -SHOPIFY_STORE_DOMAIN="[your-shopify-store-subdomain].myshopify.com" +SHOPIFY_STORE_DOMAIN="" diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 000000000..e1076edfa --- /dev/null +++ b/.prettierrc @@ -0,0 +1,6 @@ +{ + "semi": false, + "singleQuote": true, + "tabWidth": 2, + "useTabs": false +} diff --git a/.vscode/settings.json b/.vscode/settings.json index 8345c107c..820473b82 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,8 +2,8 @@ "typescript.tsdk": "node_modules/typescript/lib", "typescript.enablePromptUseWorkspaceTsdk": true, "editor.codeActionsOnSave": { - "source.fixAll": "explicit", - "source.organizeImports": "explicit", - "source.sortMembers": "explicit" + // "source.fixAll": "explicit", + // "source.organizeImports": "explicit", + // "source.sortMembers": "explicit" } } diff --git a/app/[page]/layout.tsx b/app/[page]/layout.tsx index 50614b5b1..b6cf5944c 100644 --- a/app/[page]/layout.tsx +++ b/app/[page]/layout.tsx @@ -1,4 +1,4 @@ -import Footer from 'components/layout/footer'; +import Footer from 'components/layout/footer' export default function Layout({ children }: { children: React.ReactNode }) { return ( @@ -8,5 +8,5 @@ export default function Layout({ children }: { children: React.ReactNode }) {