create-react-app绝对路径的配置

网上找了很多绝对路径的配置方法,但我尝试了,都不行,最后还是研究出来了
用create-react-app脚手架创建的项目,怎么配置绝对路径呢?
create-react-app绝对路径的配置_第1张图片
在node_module中找到react-scripts,打开webpack.config.js
全局搜索alias
create-react-app绝对路径的配置_第2张图片
加上这行代码,’@’:path.resolve(‘src’)
重新npm start启动项目,就可以使用绝对路径了,如下:
create-react-app绝对路径的配置_第3张图片

你可能感兴趣的:(react)