misskey/webpack/module/rules/index.ts
2017-05-17 00:00:56 +09:00

12 lines
216 B
TypeScript

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()
];