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
258 B

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