diff --git a/src/App.vue b/src/App.vue
index 379cf8e0e63563da51f50cae64ee10b30e6a0032..1e0b3cc489dd783d9e88a391047695a2108241dd 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,111 +1,111 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/vite.config.js b/vite.config.js
index 9e67545d550e22026cd8878edb483e83b4568d1f..4d9f38e480aec8991479dec23b9743317a9179de 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -1,11 +1,28 @@
+// import { defineConfig } from 'vite'
+// import vue from '@vitejs/plugin-vue'
+
+// // https://vitejs.dev/config/
+// export default defineConfig({
+// server: {
+// host: true
+// },
+// plugins: [vue()]
+// })
+
+
+import { fileURLToPath, URL } from 'node:url'
+
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
- server: {
- host: true
- },
- plugins: [vue()]
+ plugins: [
+ vue(),
+ ],
+ resolve: {
+ alias: {
+ '@': fileURLToPath(new URL('./src', import.meta.url))
+ }
+ }
})
-