Skip to content

AbsoluteWebServices/vsf-newleaf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VSF-Newleaf Integration

Installation


Add your module to <Project>/packages

Setup


Register the integration in the middleware.config.js file.

module.exports = {
  integrations: {
    newleaf: {
      location: "@absolute-web/vsf-newleaf/server",
      configuration: {
        apiUrl: process.env.NEWLEAF_API_URL,
      },
    },
  },
};

Add NEWLEAF_API_URL variable to .env file

NEWLEAF_API_URL=<API_URL>

Register the module in the nuxt.config.js file.

buildModules: {
  [
    '@vue-storefront/nuxt',
    {
      useRawSource: {
        dev: [
          '@absolute-web/vsf-newleaf',
        ],
        prod: [
          '@absolute-web/vsf-newleaf',
        ],
      },
    }
  ],
  ['@absolute-web/vsf-newleaf/nuxt'],
},

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published