src/index.js
import bar from './bar.js';
bar();
src/bar.js
export default function bar() {
//
}
不使用配置 或提供自定义的 webpack.config.js
const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js',
},
};
page.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
...
</head>
<body>
...
<script src="dist/bundle.js"></script>
</body>
</html>
在控制台运行 webpack
命令,生成 bundle.js
。