您好,登錄后才能下訂單哦!
新建文件夾,按住shift右擊選擇在此處打開命令窗口。
npm init
npm install webpack --save-dev
新建hello.js文件,function hello(str){ alert(str); }
webpack hello.js hello.bundle.js
新建world.js文件 function world(){ return { } }
改hello.js為 require("./world.js");
運行
新建style.css body{background:#ccc;}
改hello.js為require("style-loader!css-loader!./style.css");
npm install css-loader style-loader --save-dev
新建index.js文件<script src="hello.bundle.js"></script> hello.js文件加上hello('hello world!');
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。