Webpack 简单示例
使用 Webpack 所需的最低要求是以下命令:
webpack ./src/index.js ./dist/bundle.js
// this is equivalent to:
webpack source-file destination-file
Web 包将获取源文件,编译到输出目标并解析源文件中的所有依赖项。
使用 Webpack 所需的最低要求是以下命令:
webpack ./src/index.js ./dist/bundle.js
// this is equivalent to:
webpack source-file destination-file
Web 包将获取源文件,编译到输出目标并解析源文件中的所有依赖项。