我正在使用 Laravel Mix,它使用 Webpack 3.6,我正在尝试安装https://atomiks.github.io/tippyjs/。
我的 SCSS 可能通过@import "../../../../node_modules/tippy.js/dist/tippy.css";
.
但是,在我的 javascript 文件的顶部,我有这个,它不起作用:
var $ = require('jquery');
var webcast_helper = require('webcast_helper');
var moment = require('moment');
import tippy from 'tippy.js';
我得到错误:Uncaught TypeError: Cannot assign to read only property 'exports' of object '#<Object>'
如何以适用于这种 Webpack 方法的方式导入 Tippy.js?
(如何使用 webpack 4 将 tippy.js 导入 html 页面?显然对我不起作用。)