0.0.4 • Published 2 years ago

@absolute-web/vsf-wordpress v0.0.4

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

VSF-Wordpress Integration

Installation


Add your module to <Project>/packages

Setup


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

module.exports = {
  integrations: {
    wordpress: {
      location: "@absolute-web/vsf-wordpress/server",
      configuration: {
        api: process.env.WORDPRESS_API_URL,
      },
    },
  },
};

Add WORDPRESS_API_URL variable to .env file

WORDPRESS_API_URL=<API_URL>

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

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

2 years ago

0.0.3

2 years ago

0.0.2

3 years ago

0.0.1

3 years ago