You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.0 KiB
28 lines
1.0 KiB
<!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://rawcdn.githack.com/KaKi87-2/brands.css/473858ec2e3c148039ea5ac173d1ae668f8e33a2/Discord/Discord.css';
|
|
:root {
|
|
color-scheme: dark;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="App"></body>
|
|
</html>
|