mirror of
https://github.com/FJurmanovic/wallet-web.git
synced 2026-02-06 06:08:10 +00:00
fixed element names
This commit is contained in:
@@ -16,6 +16,6 @@
|
|||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<app-shadow></app-shadow>
|
<div id="app"></div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
import 'layouts';
|
import 'layouts';
|
||||||
import 'components';
|
import 'components';
|
||||||
import 'pages';
|
import 'pages';
|
||||||
|
|
||||||
|
const app = document.getElementById('app');
|
||||||
|
const _appShadow = document.createElement('app-shadow');
|
||||||
|
app.appendChild(_appShadow);
|
||||||
|
|||||||
@@ -55,8 +55,14 @@ module.exports = (env, args) => {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
minimize: true,
|
minimizer: [
|
||||||
minimizer: [new TerserPlugin(), new UglifyJsPlugin()],
|
new UglifyJsPlugin({
|
||||||
|
uglifyOptions: {
|
||||||
|
keep_classnames: true,
|
||||||
|
keep_fnames: true,
|
||||||
|
}
|
||||||
|
})
|
||||||
|
]
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
path: path.join(__dirname, 'public'),
|
path: path.join(__dirname, 'public'),
|
||||||
|
|||||||
Reference in New Issue
Block a user