简体   繁体   中英

Module not found: Error: Can't resolve 'core-js/fn/array' React Webpack

I changed CollectionPage's component to arrow function component rather than just normal function and then I got this error but I don't know why it didn't threw this error when I did the same with a lot of other components . this the comonent code

import { from } from 'core-js/fn/array'
import React from 'react'
import { useParams } from 'react-router-dom'
import Products from '../Products/Products'
import {H1} from '../../Style/global'

const CollectionPage=()=> {
    const {collectionTitle}= useParams()
    return (
        <div style={{marginTop:96}}>
            <H1>{collectionTitle} Collection</H1>
            <Products collectionTitle={collectionTitle}/>
        </div>
    )
}


export default CollectionPage

btw this a react webpack project and here is my webpack config :

const path = require('path')
const HTMLPlugin = require('html-webpack-plugin')
const CopyPlugin = require('copy-webpack-plugin');

module.exports ={
    entry :"./src/index.js",
    output:{
        path:path.resolve(__dirname,"./dist"),
        filename:'index.js',
    },
    plugins:[
        new HTMLPlugin({template:'./src/index.html'}),
        new CopyPlugin({
            patterns: [
              { from: './src/images', to: 'images' },
            ],
          }),
    ],
    module:{
        rules:[
            { 
                test : /\.js$/,
                exclude:/node_modules/,
                use:{
                    loader:"babel-loader"
                },
            },
            {
                test: /\.(png|gif|jpg)$/,
                include: [
                  path.join(__dirname, './src/images')
                ],
                loader: 'file-loader',
             },
            {
                test:/.(png|jpg|woff|woff2|eot|ttf|svg|gif)$/, //Customise according to your need
                use: [
                  {
                    loader: 'url-loader',
                    options: {
                      limit: 100000000,
                    }
                  }
               ]
            },
            {
                test: /\.js$/,
                enforce: 'pre',
                use: ['source-map-loader'],
            },
            {
                test: /\.css$/i,
                loader: 'style-loader!css-loader' 
            },
        ]
    }
}

this is the error :

./src/components/routes/CollectionPage.js Module not found: Error: Can't resolve 'core-js/fn/array' in 'C:\\Users\\Ora Ora\\l-3afya-mafya-merch-store-react-js-\\src\\components\\routes'

also getting this error

Error from chokidar (C:\\node_modules): Error: EBUSY: resource busy or locked, lstat 'C:\\DumpStack.log.tmp' Error from chokidar (C:\\node_modules): Error: EBUSY: resource busy or locked, lstat 'C:\\hiberfil.sys' Error from chokidar (C:\\node_modules): Error: EBUSY: resource busy or locked, lstat 'C:\\pagefile.sys' Error from chokidar (C:\\node_modules): Error: EBUSY: resource busy or locked, lstat 'C:\\swapfile.sys' Error from chokidar (C:\\node_modules): Error: EBUSY: resource busy or locked, lstat 'C:\\DumpStack.log.tmp' Error from chokidar (C:\\node_modules): Error: EBUSY: resource busy or locked, lstat 'C:\\hiberfil.sys' Error from chokidar (C:\\node_modules): Error: EBUSY: resource busy or locked, lstat 'C:\\pagefile.sys' Error from chokidar (C:\\node_modules): Error: EBUSY: resource busy or locked, lstat 'C:\\swapfile.sys'

感谢 Jacobo Tapia 的评论,我意识到这是一个愚蠢的 Visual Studio 自动导入错误,因为您可以在我的组件顶部看到这个 import import { from } from 'core-js/fn/array'这没有任何意义

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM