Webpack:模块构建失败
Webpack: module build failed
我 运行 npm run dev
这么简单 app.js:
//import {JetApp, EmptyRouter, HashRouter } from "webix-jet";
import {JetApp} from "webix-jet/dist/es6/jet";
我收到此错误 - 不确定我遗漏了什么。
Module build failed: Module not found:
"./assets/app.js" contains a reference to the file "webix-jet/dist/es6/jet".
This file can not be found, please check it for typos or update it if the file got moved.
我已经通过 npm 添加了 webix 和 webix-jet,我可以在 node_modules
下看到它们的 sources/dist
想法?
首先,通常你的代码必须看起来像
import {JetApp} from "webix-jet";
所以你只需要从 webix-jet 模块导入,不需要定义确切的文件(确保你在 package.json 中有 webix-jet 作为依赖项)
此外,这一行 ./assets/app.js"
看起来也很奇怪,因为 app.js 应该在“src”文件夹中,而不是在“assets”文件夹中
我 运行 npm run dev
这么简单 app.js:
//import {JetApp, EmptyRouter, HashRouter } from "webix-jet";
import {JetApp} from "webix-jet/dist/es6/jet";
我收到此错误 - 不确定我遗漏了什么。
Module build failed: Module not found: "./assets/app.js" contains a reference to the file "webix-jet/dist/es6/jet". This file can not be found, please check it for typos or update it if the file got moved.
我已经通过 npm 添加了 webix 和 webix-jet,我可以在 node_modules
想法?
首先,通常你的代码必须看起来像
import {JetApp} from "webix-jet";
所以你只需要从 webix-jet 模块导入,不需要定义确切的文件(确保你在 package.json 中有 webix-jet 作为依赖项)
此外,这一行 ./assets/app.js"
看起来也很奇怪,因为 app.js 应该在“src”文件夹中,而不是在“assets”文件夹中