1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

fix: vue build, removed console.log

This commit is contained in:
Roman 2020-06-22 16:52:15 +03:00
parent 7fcd6876eb
commit bfdd31f4e6
2 changed files with 0 additions and 2 deletions

View File

@ -186,7 +186,6 @@ export class ThemeStore {
try {
await this.load(themeId);
this.activeThemeId = themeId;
console.log('THEME', themeId, this.themes.get(themeId))
} catch (err) {
if (themeId !== this.defaultTheme.name) {
this.setTheme(); // fallback to default theme

View File

@ -26,7 +26,6 @@ export function webpackConfigReact(): webpack.Configuration {
},
output: {
path: outDir,
publicPath: "/",
filename: '[name].js',
chunkFilename: 'chunks/[name].js',
},