diff options
Diffstat (limited to 'webpack.config.ts')
| -rw-r--r-- | webpack.config.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/webpack.config.ts b/webpack.config.ts index 4c6da768da..1e295c245d 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -16,7 +16,6 @@ import I18nReplacer from './src/misc/i18n'; import { pattern as i18nPattern, replacement as i18nReplacement } from './webpack/i18n'; import { pattern as faPattern, replacement as faReplacement } from './src/misc/fa'; const constants = require('./src/const.json'); -import { licenseHtml } from './src/misc/license'; const locales = require('./locales'); const meta = require('./package.json'); @@ -74,8 +73,7 @@ const consts = { _VERSION_: version, _CODENAME_: codename, _LANG_: '%lang%', - _LANGS_: Object.keys(locales).map(l => [l, locales[l].meta.lang]), - _LICENSE_: licenseHtml + _LANGS_: Object.keys(locales).map(l => [l, locales[l].meta.lang]) }; const _consts: { [ key: string ]: any } = {}; |