Просмотр исходного кода

feat: 测试 standard-version: feature

Burt 1 год назад
Родитель
Сommit
ba4310dba3
1 измененных файлов с 4 добавлено и 3 удалено
  1. 4 3
      src/main.ts

+ 4 - 3
src/main.ts

@@ -1,9 +1,10 @@
+import '@/style/index.scss'
+import 'virtual:uno.css'
 import { createSSRApp } from 'vue'
 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)