mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-25 13:23:42 +00:00
11 lines
182 B
JavaScript
11 lines
182 B
JavaScript
module.exports = {
|
|
process() {
|
|
return {
|
|
code: 'module.exports = {};',
|
|
}
|
|
},
|
|
getCacheKey() {
|
|
// The output is always the same.
|
|
return 'svgTransform'
|
|
},
|
|
}
|