ice icon indicating copy to clipboard operation
ice copied to clipboard

怎么配置飞冰, 支持otf 文件格式

Open huyy5566 opened this issue 2 years ago • 1 comments

What is the current behavior? 发生了什么?

What is the expected behavior? 期望的结果是什么?

Any additional comments? 相关环境信息?

  • ice.js Version
  • build.json Configuration
  • Node Version:
  • Platform:

huyy5566 avatar Sep 21 '22 01:09 huyy5566

定制下 webpack 的 loader 配置,比如:

webpackLoaders: {
  file: {
    test: /.(otf)$/,
    type: 'asset/resource',
    loaders: {
      'file-loader': {},
    },
    include: ['src'],
  }
}

ClarkXia avatar Sep 21 '22 02:09 ClarkXia