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;
|
||||
}
|
||||
</style>
|
||||
<app-shadow></app-shadow>
|
||||
<div id="app"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
import 'layouts';
|
||||
import 'components';
|
||||
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: [new TerserPlugin(), new UglifyJsPlugin()],
|
||||
minimizer: [
|
||||
new UglifyJsPlugin({
|
||||
uglifyOptions: {
|
||||
keep_classnames: true,
|
||||
keep_fnames: true,
|
||||
}
|
||||
})
|
||||
]
|
||||
},
|
||||
output: {
|
||||
path: path.join(__dirname, 'public'),
|
||||
|
||||
Reference in New Issue
Block a user