diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-08-21 05:42:31 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-08-21 05:42:31 +0900 |
| commit | a603602f32ad6ca40e407c768e1cb71c8649db60 (patch) | |
| tree | d0d5ac0527ff8d045e508ef26ca2151d6eb4f8b4 /webpack.config.ts | |
| parent | Revert "Fix bug?" (diff) | |
| download | sharkey-a603602f32ad6ca40e407c768e1cb71c8649db60.tar.gz sharkey-a603602f32ad6ca40e407c768e1cb71c8649db60.tar.bz2 sharkey-a603602f32ad6ca40e407c768e1cb71c8649db60.zip | |
Clean up
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 } = {}; |