Answers for "ERROR in chunk styles~vendors [initial] static/css/0.chunk.98bea80741e97b2a4ece.css Cannot read property 'pop' of undefined"

0

ERROR in chunk styles~vendors [initial] static/css/0.chunk.98bea80741e97b2a4ece.css Cannot read property 'pop' of undefined

entry: {
    index: './src/index.jsx',
},
...
cacheGroups: {
    indexStyles: {
        name: 'index',
        test: (m, c, entry = 'index') => {
            return m.constructor.name === 'CssModule' && recursiveIssuer(m) === entry;
         },
         chunks: 'all',
         enforce: true,
    }
}
Posted by: Guest on November-14-2020
0

ERROR in chunk styles~vendors [initial] static/css/0.chunk.98bea80741e97b2a4ece.css Cannot read property 'pop' of undefined

cacheGroups: {
    index: {
        name: 'indexStyles',
        test: (m, c, entry = 'index') => {
            return m.constructor.name === 'CssModule' && recursiveIssuer(m) === entry;
         },
         chunks: 'all',
         enforce: true,
    }
}
Posted by: Guest on November-14-2020

Code answers related to "ERROR in chunk styles~vendors [initial] static/css/0.chunk.98bea80741e97b2a4ece.css Cannot read property 'pop' of undefined"

Code answers related to "Javascript"

Browse Popular Code Answers by Language