我在 Windows 10 x64 b 中尝试webpack应用程序时收到以下错误。ERROR in ./node_modules/material-ui/styles/withStyles.jsModule not found: Error: Can't resolve '@babel/runtime/core-js/map'我在github和stackoverflow上搜索,但没有找到合适的答
2018-11-15
我有一个全新安装的 Laravel 5.3 项目,该项目内置了示例 Vue 组件。require('./bootstrap');Vue.component('example', require('./components/Example.vue'));const app = new Vue({el: '#app'});然后我尝试在 welcome.blade.php 中添加<example></e
我有以下设置:<div><Router history={browserHistory}><Route path="/" component={NewCustomerContainer} /><Route path="/newCustomer" component={NewCustomerContainer} /><Route path="/search" component={SearchPag
2017-03-20
这是完整错误Uncaught ReferenceError: process is not definedat index.js:34at Object../node_modules/utp/index.js (index.js:41)at Object.options.factory (react refresh:6)at __webpack_require__ (bootstrap:24)at
2022-02-19
我正在使用 vue 和 ionic 制作一个应用程序,但是在尝试加载资产时,路径无法解析。<template><div id="index"><img :src="image.src" v-for="image in images"></div></template><script>export default {name: 'Inicio',data() {return {images: [{s
2019-04-26
使用下面定义的配置,运行webpack时控制台会抛出一个错误:TypeError: element.loader.split is not a functionwebpack.config.jsmodule.exports = {devtool: 'eval',entry: {chiffr: getEntrySources(['./src/index',]),},output: {path: pa
2016-07-05
在项目中我使用了babel-plugin-import,是用来实现ant design的按需加载的,但是我在运行webpack的时候,出现了错误的信息以下是错误信息/usr/local/lib/node_modules/webpack/node_modules/webpack-core/lib/LoadersList.js:58if(element.loader) return element.l
我刚刚在webpack.dev.config.js中用 :new webpack.optimize.CommonsChunkPlugin({ name: 'common', }),替换了new webpack.optimization.splitChunks({ name: 'common' }),。现在,当我想在终端中使用yarn start时,出现了以下问题:TypeError: 无法读取未定
我正在创建一个自定义组件库,我想在多个域之间共享它。域:每个域都有自己的 nuxt 实例每个域都在package.json中注册了my-component-lib每个域都将该库注册为插件//my-component-lib.js从“my-component-lib”导入组件从“vue”导入 Vueexport default ({ store }) =>; {Vue.use(components,
2019-12-13
我们正处于该项目的初始阶段,因此现在我们只是想弄清楚如何最好地开始。我们想要创建一个 React 组件的 UI 库,我们想要做的是创建该库,以便您可以直接导入一个元素,以便:// badimport {Button} from '@mycompany/uilib'// goodimport Button from '@mycompany/uilib/Button'这是个大问题。因此,我们正在寻找几
2019-07-23
我正在尝试让 Material-ui 正确地进行 tree-shaking。与我实际使用的相比,这个包非常大。我没有使用下面分析器插件列出的大多数组件,而是按照material-ui文档中的说法导入了所有内容。例如,这是我的一个文件中的内容。import Button from '@material-ui/core/Button';import CssBaseline from '@materia
2021-09-10
我正在尝试根据此教程配置 webpack,但仍然出现相同的错误。我在调试这 2 条消息时遇到了麻烦:ERROR in ./app.jsModule parse failed: /path/react/react-webpack-babel/app/app.js Line 1: Unexpected reserved wordYou may need an appropriate loader to
2015-08-15
我使用 Windows,并且已全局安装webpack。我运行webpack命令来构建一个包。当我运行该命令时,我收到错误module.js throw err;。请看下图。webpack.config.js的内容为var webpack = require('webpack');module.exports = {context: __dirname,entry: './app.js',modul
我的项目结构如下:Projectnode_modules...comadding.jsApp.jsFooter.jsTodo.jsTodoList.jsaction.jsreducers.jsstore.jsbuild.js我有这个构建文件:var path = require('path');var webpack = require('webpack');var config = {conte
2015-12-13
我使用 Webpack 打包了我所有的 npm 模块。这是我的 webpack.config.js:"use strict";module.exports = {entry: './main.js',output: { path: __dirname, filename: 'bundle.js' },module: {loaders: [{test: /.js?$/,loader: 'babel-
2016-12-27