reaccionar alias de ruta de configuración de andamio

Cuando se escribió el artículo, reaccione la versión 16.13.1
1 Ingrese el comando npm run eject para generar el directorio de configuración en el directorio raíz del proyecto
2 Abra el archivo webpack.config.js en config y busque la siguiente ubicación

alias: {
    
    
	  // Support React Native Web
	  // https://www.smashingmagazine.com/2016/08/a-glimpse-into-the-future-with-react-native-for-web/
	  'react-native': 'react-native-web',
	  // Allows for better profiling with ReactDevTools
	  ...(isEnvProductionProfile && {
    
    
	    'react-dom$': 'react-dom/profiling',
	    'scheduler/tracing': 'scheduler/tracing-profiling',
	  }),
	  ...(modules.webpackAliases || {
    
    }),
},

3. Modifique de la siguiente manera y luego reinicie el proyecto.

alias: {
    
    
	  // Support React Native Web
	  // https://www.smashingmagazine.com/2016/08/a-glimpse-into-the-future-with-react-native-for-web/
	  'react-native': 'react-native-web',
	  // Allows for better profiling with ReactDevTools
	  ...(isEnvProductionProfile && {
    
    
	    'react-dom$': 'react-dom/profiling',
	    'scheduler/tracing': 'scheduler/tracing-profiling',
	  }),
	  ...(modules.webpackAliases || {
    
    }),
	  // 文件路径别名
	  '@': path.resolve(__dirname, '../src'),
	  '@view': path.resolve(__dirname, '../src/view'),
},

Supongo que te gusta

Origin blog.csdn.net/JeTanO/article/details/105669133
Recomendado
Clasificación