create-react-app:jquery.themepunch.tools.min.js找不到tweenlite.js
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了create-react-app:jquery.themepunch.tools.min.js找不到tweenlite.js相关的知识,希望对你有一定的参考价值。
我正在构建一个使用create-react-app创建的react应用程序。我在使用jquery插件jquery.themepunch.revolution.min.js时遇到了一些困难。
首先,我将这个库放在src/assets
文件夹中,以便webpack可以访问它。然后在我的index.tsx文件中,我这样要求:
要求( “./资产/插件/ RS-插件/ JS / jquery.themepunch.tools.min.js”);
然后我收到这个错误:
./src/assets/plugins/rs-plugin/js/jquery.themepunch.tools.min.js未找到模块:无法解析'C: projects schoolz src assets plugins rs中的'TweenLite' -plugin JS'
我验证了tweenlite.js文件确实在文件夹中。
深入研究jquery.themepunch.tools.min.js的源代码,我可以看到调用需要tweenlite.js:
此调用失败。任何建议将不胜感激。
谢谢!
尝试将以下内容添加到Webpack配置文件中:
resolve: {
root: path.resolve(__dirname),
extensions: ['', '.js'],
alias: {
"TweenLite": "gsap/src/uncompressed/TweenLite" //Path to your TweenLite file
}
}
以上是关于create-react-app:jquery.themepunch.tools.min.js找不到tweenlite.js的主要内容,如果未能解决你的问题,请参考以下文章
使用 create-react-app 脚手架搭建 react 项目,释放配置文件且注入 less 依赖
sh 用于将工作证书链接到create-react-app的脚本。允许您使用create-react-app和有效的SSL证书。
create-react-app:如何使用 https 而不是 http?