Skip to content

webpack 其他配置

yezihaohao edited this page Mar 20, 2018 · 1 revision

项目中webpack的一些额外的配置说明

  • 项目路径别名配置:alias增加别名符号和对应的路径地址

    '@': paths.appSrc
    // 使用规则
    // old
    import BreadcrumbCustom from '../../../components/BreadcrumbCustom';
    // new 简化相对路径写法
    import BreadcrumbCustom from '@/components/BreadcrumbCustom';
    
Clone this wiki locally