+
+
+
+
+ Aside
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/vue.config.js b/vue.config.js
index 5662471..274c828 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -1,5 +1,13 @@
const { defineConfig } = require('@vue/cli-service')
+const path = require('path')
+function resolve(dir){
+ return path.join(__dirname,dir)
+}
module.exports = defineConfig({
transpileDependencies: true,
- lintOnSave:false
+ lintOnSave:false,
+ chainWebpack:(config)=>{
+ config.resolve.alias
+ .set("@",resolve('src'))
+ }
})