mirror of
https://github.com/akveo/eva-icons.git
synced 2025-08-31 17:42:11 +02:00
26 lines
494 B
JavaScript
26 lines
494 B
JavaScript
/**
|
|
* @license
|
|
* Copyright Akveo. All Rights Reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*/
|
|
|
|
const path = require('path');
|
|
|
|
const config = {
|
|
'convertOptions': {
|
|
'png': {
|
|
'sizes': ['128']
|
|
}
|
|
},
|
|
'copy': [
|
|
{
|
|
'format': 'svg'
|
|
},
|
|
],
|
|
'srcPath': path.join(__dirname, `../package/icons`),
|
|
'desPath': path.join(__dirname, `../package-build`),
|
|
'defaultExtension': 'svg'
|
|
};
|
|
|
|
module.exports = config;
|