Skip to content

Webpack Alias 别名配置

Published: at 05:27 PMSuggest Changes

项目中总是用 ../../../ 很烦,所以决定用别名来解决这个问题。

配置

// webpack.config.js
const path = require('path')

module.exports = {
  resolve: {
    alias: {
      '@': path.resolve(__dirname, 'src')
    }
  }
}

使用

import { a } from '@/a.js'

Previous Post
ESLint 解决 TypeScript 路径别名错误:Cannot find module
Next Post
查看 Git 代码更新量