You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2026-06-18 05:04:13 +02:00
9 lines
228 B
JavaScript
9 lines
228 B
JavaScript
|
|
module.exports = function translationPathSyncPlugin() {
|
||
|
|
return {
|
||
|
|
name: 'translation-path-sync-plugin',
|
||
|
|
getClientModules() {
|
||
|
|
return [require.resolve('../src/clientModules/translationPathSync.js')];
|
||
|
|
},
|
||
|
|
};
|
||
|
|
};
|