mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 22:43:09 +02:00
19 lines
395 B
TypeScript
19 lines
395 B
TypeScript
import i18n from './i18n';
|
|
import fa from './fa';
|
|
//import base64 from './base64';
|
|
import themeColor from './theme-color';
|
|
import vue from './vue';
|
|
import stylus from './stylus';
|
|
import typescript from './typescript';
|
|
import collapseSpaces from './collapse-spaces';
|
|
|
|
export default lang => [
|
|
collapseSpaces(),
|
|
i18n(lang),
|
|
fa(),
|
|
//base64(),
|
|
themeColor(),
|
|
vue(),
|
|
stylus(),
|
|
typescript()
|
|
];
|