【React】路径别名配置

  1. 路径解析配置(webpack),把 @/ 解析为 src/
  2. 路径联想配置(VsCode),VSCode 在输入 @/ 时,自动联想出来对应的 src/下的子级目录

1. 路径解析配置

  1. 安装craco npm i -D @craco/craco
  2. 项目根目录下创建配置文件craco.config.js
  3. 配置文件中添加路径解析配置
  4. 包文件中配置启动和打包命令
// craco.config.js

const path = require('path');

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

  "scripts": {
    "start": "craco start",
    "build": "craco build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },

2. 联想路径配置

  1. 根目录下新增配置文件 - jsconfig.json
  2. 添加路径提示配置
// jsconfig.json
{
  "compilerOptions": {
    "baseUrl": "./",
    "paths": {
      "@/*": [
        "src/*"
      ]
    }
  }
}

你可能感兴趣的:(React,react.js,前端,前端框架)