mirror of
https://github.com/knadh/listmonk.git
synced 2025-03-02 01:05:25 +08:00
- Upgrade eslint and fix a massive number (~2500!) of linting errors from new rules. - Upgrade babel core frontend dev dependency. - Upgrade UI lib and other frontend deps. - Refactor the Vue admin app to use `vite` instead of `webpack`. - This was an extremely tedious and painstaking, trial-and-error alchemy job. My disdain for the Javascript "ecosystem" grows. - Re-add custom admin appearance endpoints to the refactored Vue page. - Remove obsolete vue-cli config. - Re-auto-format all .vue files again to work with new linters.
21 lines
696 B
HTML
Vendored
21 lines
696 B
HTML
Vendored
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
|
<link rel="icon" href="/admin/static/favicon.png" />
|
|
<link href="/admin/custom.css" rel="stylesheet" type="text/css">
|
|
<script src="/admin/custom.js" async defer></script>
|
|
<title>listmonk</title>
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
<strong>We're sorry but listmonk doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
|
</noscript>
|
|
|
|
<div id="app"></div>
|
|
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|