mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-21 15:27:53 +00:00
12 lines
183 B
JavaScript
12 lines
183 B
JavaScript
module.exports = {
|
|
process() {
|
|
return {
|
|
code: 'module.exports = {};',
|
|
}
|
|
},
|
|
getCacheKey() {
|
|
// The output is always the same.
|
|
return 'fileTransform'
|
|
},
|
|
}
|