Less 盖茨比与蚂蚁设计主题定制

Less 盖茨比与蚂蚁设计主题定制,less,gatsby,antd,Less,Gatsby,Antd,如何连接和定制盖茨比js应用程序中ant design的默认较少变量。。。? 试着 { resolve: 'gatsby-plugin-less', options: { javascriptEnabled: true, modifyVars: { 'primary-color': primaryColor, 'font-family': `Avenir, -app

如何连接和定制盖茨比js应用程序中ant design的默认较少变量。。。?

试着

      {
        resolve: 'gatsby-plugin-less',
        options: {
          javascriptEnabled: true,
          modifyVars: {
            'primary-color': primaryColor,
            'font-family': `Avenir, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif`,
          },
        },
      },
      {
        resolve: 'gatsby-plugin-antd',
        options: {
          style: true,
        },
      },