aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/site/src/main.ts
diff options
context:
space:
mode:
authorHsiangNianian <i@jyunko.cn>2024-09-07 15:15:32 +0800
committerHsiangNianian <i@jyunko.cn>2024-09-07 15:15:32 +0800
commit72a79bd525e72f80c6b46b4514f0e6bb4c3cc07a (patch)
tree16bd9b550f7fd406be726c3a2380ef24ca14bfe0 /site/src/main.ts
parent8a32052835e155b5577fe15cd2b09b7aa56a8d65 (diff)
downloadHydroRoll-72a79bd525e72f80c6b46b4514f0e6bb4c3cc07a.tar.gz
HydroRoll-72a79bd525e72f80c6b46b4514f0e6bb4c3cc07a.zip
refactor(site): move site to HydroRoll-site repo
Diffstat (limited to 'site/src/main.ts')
-rw-r--r--site/src/main.ts38
1 files changed, 0 insertions, 38 deletions
diff --git a/site/src/main.ts b/site/src/main.ts
deleted file mode 100644
index 6bb9085..0000000
--- a/site/src/main.ts
+++ /dev/null
@@ -1,38 +0,0 @@
-/**
- * main.ts
- *
- * Bootstraps Vuetify and other plugins then mounts the App`
- */
-
-
-// Components
-import App from './App.vue'
-
-// Composable
-import { createApp } from 'vue'
-
-// Plugins
-import { registerPlugins } from '@/plugins'
-
-import './assets/main.css'
-import VMdPreview from '@kangc/v-md-editor/lib/preview';
-import '@kangc/v-md-editor/lib/style/preview.css';
-import githubTheme from '@kangc/v-md-editor/lib/theme/github.js';
-import '@kangc/v-md-editor/lib/theme/style/github.css';
-import ElementPlus from 'element-plus'
-import 'element-plus/dist/index.css'
-// highlights
-import hljs from 'highlight.js';
-
-VMdPreview.use(githubTheme, {
- Hljs: hljs,
-});
-
-
-
-
-const app = createApp(App)
-app.use(VMdPreview)
-app.use(ElementPlus)
-registerPlugins(app)
-app.mount('#app')