@absolute-web/vsf-wordpress 中文文档教程

发布于 3年前 浏览 21 项目主页 更新于 3年前

VSF-Wordpress Integration

Installation


将您的模块添加到 /packages

Setup


middleware.config.js 文件中注册集成。

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

添加 WORDPRESS_API_URL 变量到 .env 文件

WORDPRESS_API_URL=<API_URL>

nuxt.config.js 文件中注册模块。

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

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'],
},
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文