blob: 2308f4e53555ad2bac1df97738a848ea6772013f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import i18n from './i18n';
import themeColor from './theme-color';
import tag from './tag';
import stylus from './stylus';
export default (lang, locale) => [
i18n(lang, locale),
themeColor(),
tag(),
stylus()
];
|