合同小程序前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
534 B

1 week ago
  1. // lime.config.js
  2. module.exports = {
  3. // 输入的文件目录,自有的SVG,如果没有则不需要
  4. input: {
  5. prefix: "my-icons",
  6. dir: '/static/svg',
  7. },
  8. // 输出的配置
  9. output: {
  10. // 输出的文件目录
  11. dir: '/static/icon',
  12. // 输出的文件的格式,如果是JSON则是一个图标合集
  13. // file: 'icons.json',
  14. // 如果是SVG则是每个图标做为单独的文件
  15. file: '*.svg',
  16. },
  17. icons: [
  18. 'el:address-book',
  19. 'uil:12-plus',
  20. 'icon-park-outline:abdominal',
  21. 'icon-park-outline:acoustic'
  22. ]
  23. }