mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
module.exports = {
|
|
process() {
|
|
return 'module.exports = {};';
|
|
},
|
|
getCacheKey() {
|
|
// The output is always the same.
|
|
return 'css';
|
|
}
|
|
};
|