文件名称:webpack-demo
文件大小:5KB
文件格式:ZIP
更新时间:2024-06-01 12:23:00
JavaScript
webpack演示 module.exports = { entry: "./entry.js", output: { path: __dirname, filename: "bundle.js" }, module: { loaders: [ { test: /\.css$/, loader: "style!css" } ] } };
【文件预览】:
webpack-demo-master
----.gitignore(13B)
----package.json(323B)
----webpack.config.js(223B)
----README.md(247B)
----style.css(32B)
----index.html(172B)
----entry.js(65B)
----content.js(53B)
----bundle.js(10KB)