This commit is contained in:
Kyle Spearrin 2018-04-04 10:24:09 -04:00
parent 3edef5450d
commit 4e20efdee1
2 changed files with 2 additions and 2 deletions

View File

@ -121,7 +121,7 @@ export default class MainBackground {
this.storageService = new BrowserStorageService(this.platformUtilsService, false);
this.secureStorageService = new BrowserStorageService(this.platformUtilsService, true);
this.i18nService = i18nService(this.platformUtilsService);
this.i18n2Service = new I18n2Service(window.navigator.language, i18nService);
this.i18n2Service = new I18n2Service(window.navigator.language, this.i18nService);
this.constantsService = new ConstantsService(this.i18nService, delayi18nLoad);
this.cryptoService = new CryptoService(this.storageService, this.secureStorageService);
this.tokenService = new TokenService(this.storageService);

View File

@ -137,7 +137,7 @@ module.exports = {
]),
new webpack.SourceMapDevToolPlugin({
filename: '[name].js.map',
include: ['popup/main.js']
include: ['popup/main.js', 'background.js']
}),
extractCss
],