Переглянути джерело

Merge branch 'base' into base

故城 1 рік тому
батько
коміт
6cc22d982e
1 змінених файлів з 4 додано та 3 видалено
  1. 4 3
      src/main.ts

+ 4 - 3
src/main.ts

@@ -1,11 +1,12 @@
+import '@/style/index.scss'
+import 'virtual:uno.css'
 import { createSSRApp } from 'vue'
 import { VueQueryPlugin } from '@tanstack/vue-query'
 
 import App from './App.vue'
+import { prototypeInterceptor, requestInterceptor, routeInterceptor } from './interceptors'
 import store from './store'
-import { routeInterceptor, requestInterceptor, prototypeInterceptor } from './interceptors'
-import 'virtual:uno.css'
-import '@/style/index.scss'
+// 测试 standard-version: feature
 
 export function createApp() {
   const app = createSSRApp(App)