webpack.config.js
module.exports = {
entry: './app.js',
output: {
filename: 'bundle.js'
}
};
<html>
<head>
...
</head>
<body>
...
<script src="bundle.js"></script>
</body>
</html>
bundle.js
를 만들기 위해 webpack
명령어를 실행해주세요.
가이드 절에서 빠르게 시작할 수 있습니다.
웹팩 안에 있는 코어 개념이나 혹은 더 자세한 정보를 얻고 싶으시다면 개념 절에서 확인해주세요.
Through contributions, donations, and sponsorship, you allow webpack to thrive. Your donations directly support office hours, continued enhancements, and most importantly, great documentation and learning material!