vue cli3.0 给路径起别名 vue.config.js
Posted 小白兔晒黑了
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue cli3.0 给路径起别名 vue.config.js相关的知识,希望对你有一定的参考价值。
给路径起别名
在根目录添加vue.config.js文件
module.exports = { configureWebpack: { resolve: { alias: { ‘assets‘: ‘@/assets‘, ‘common‘: ‘@/common‘, ‘components‘: ‘@/components‘, ‘network‘: ‘@/network‘, ‘views‘: ‘@/views‘, } } } }
.editorconfig
root = true [*] charset = utf-8 indent_style = space indent_size = 2 end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true
以上是关于vue cli3.0 给路径起别名 vue.config.js的主要内容,如果未能解决你的问题,请参考以下文章