admin管理员组文章数量:1343322
I want to include a custom JavaScript in the app.js file which as the following code:
window.$ = window.jQuery = require('jquery')
require('bootstrap-sass');
The require only works for published packages and using node install but I want to know if there is a way to include a custom js in this file in order to have just one built script in my app (in this case the app.js script).
I want to include a custom JavaScript in the app.js file which as the following code:
window.$ = window.jQuery = require('jquery')
require('bootstrap-sass');
The require only works for published packages and using node install but I want to know if there is a way to include a custom js in this file in order to have just one built script in my app (in this case the app.js script).
Share edited Sep 29, 2016 at 20:54 Heretic Monkey 12.1k7 gold badges61 silver badges131 bronze badges asked Sep 29, 2016 at 19:45 Sergio VilchisSergio Vilchis 3222 gold badges4 silver badges17 bronze badges3 Answers
Reset to default 7Add your scripts under this path \resources\assets\js\
,
(ex : \resources\assets\js\scripts\my_script.js
& \resources\assets\js\another_script.js
)
And, add them to \resources\assets\js\app.js
require ('./scripts/my_script.js');
require ('./another_script.js');
Just add your script in resources/assets/js
and then run gulp
to pile all your scripts into app.js
Check this for more info
I presume you have other files that are not exactly VueJs files and you want to build into a single script. In that case it is not good to put the script in that file. You can however place the files in your resources/assets/js
folder and add some code to your gulpfile.js
to build all your scripts into one file. Here is the code you might need to add.
mix.scripts([
'filename.js',
]);
By default, the build file will be placed in public/js/all.js
.
You can customise that driectory by modifying the example above to something like this
mix.scripts([
'filename.js
], 'path/to/file.js');
本文标签: laravelInclude custom JavaScript in the appjsStack Overflow
版权声明:本文标题:laravel - Include custom JavaScript in the app.js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743691990a2522860.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论