1

我是 Stencil CLI 的新手。我最近安装了相同的,并在一些挖掘之后注意到 .stencil 文件现在已弃用,但不知道如何使用它的替代品,我假设是 config.stencil.json 和 secrets.stencil.json。我正在关注本教程:https ://www.youtube.com/watch?v=ZwrVN5QrEZY&t=20s

任何人都知道如何使用它们来创建自定义页面?

4

1 回答 1

3

您将遵循完全相同的设置,只需将页面模板放在 config.stencil.json 文件中。

该文件可能如下所示:

{
  "normalStoreUrl": "https://store-abcde12345.mybigcommerce.com",
  "port": 3000,
  "customLayouts": {
    "brand": {},
    "category": {},
    "page": {
      "about-us": "/about-us"
    },
    "product": {}
  }
}

secrets.stencil.json 文件仅包含 API 令牌。

{
  "accessToken": "tokenhere"
}
于 2021-05-31T14:37:34.133 回答