1
0

2 Commits b0c00bf2c1 ... db847d2226

Autor SHA1 Mensagem Data
  hesiyun db847d2226 Merge branch 'master' of http://47.107.126.107:3000/hesiyun/luomt há 1 ano atrás
  hesiyun 09c7a61acd test há 1 ano atrás
2 ficheiros alterados com 6 adições e 1 exclusões
  1. 2 0
      src/App.vue
  2. 4 1
      vite.config.ts

+ 2 - 0
src/App.vue

@@ -1,4 +1,6 @@
 <script setup lang="ts">
+console.log('test');
+
 </script>
 
 <template>

+ 4 - 1
vite.config.ts

@@ -12,5 +12,8 @@ export default defineConfig({
       "@": path.resolve(__dirname, './src')
     }
   },
-  base: './'
+  base: './',
+  server: {
+    open: true
+  }
 })