Requirements
Required Environment Variables
Intelligems Organization Id
INTELLIGEMS_ORG_ID=<Intelligems-Organization-Id>
SHOPIFY_STORE_DOMAIN=<your-store-name>.myshopify.com
SHOPIFY_STOREFRONT_ACCESS_TOKEN=<Storefront-API-Token>Vite Configuration
import {defineConfig} from 'vite';
import {hydrogen} from '@shopify/hydrogen/vite';
import {oxygen} from '@shopify/mini-oxygen/vite';
import {vitePlugin as remix} from '@remix-run/dev';
import tsconfigPaths from 'vite-tsconfig-paths';
export default defineConfig({
...
ssr: {
optimizeDeps: {
include: [
...
'@intelligems/headless/hydrogen'
],
},
},
optimizeDeps: {
include: [
...
'@intelligems/headless/hydrogen'
],
},
...
});
Last updated