This repository has been archived on 2023-03-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
stack-bounty-hunter/index.html

27 lines
1 KiB
HTML

<!DOCTYPE html>
<!--suppress JSUnresolvedFunction -->
<html lang="en">
<head>
<title>stack-bounty-hunter</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="module">
import { createApp } from 'https://cdn.jsdelivr.net/npm/vue@3.2.11/dist/vue.esm-browser.js';
import { createMyApp } from './src/app.js';
const app = createMyApp({ createApp });
document.addEventListener('DOMContentLoaded', () => app.mount('.App'));
</script>
<style>
@import 'https://cdn.jsdelivr.net/npm/destyle.css@3.0.2/destyle.min.css';
@import 'https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css';
@import 'https://cdn.jsdelivr.net/gh/KaKi87-2/brands.css@473858ec2e3c148039ea5ac173d1ae668f8e33a2/Discord/Discord.css';
:root {
color-scheme: dark;
}
</style>
</head>
<body class="App"></body>
</html>