You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
268 B

2 years ago
2 years ago
2 years ago
2 years ago
  1. // 添加自定义对于webpack的配置
  2. const path = require('path')
  3. module.exports = {
  4. // webpack 配置
  5. webpack: {
  6. // 配置别名
  7. alias: {
  8. // 约定:使用 @ 表示 src 文件所在路径
  9. '@': path.resolve(__dirname, 'src')
  10. },
  11. }
  12. }