用vue init webpack启动了一个官方示例项目,
npm run dev之后启动index.html的那网页,但是一直找不到那个main.js是在哪里被调用的。
.
├── src/
│ ├── main.js # app entry file
│ ├── App.vue # main app component
│ ├── components/ # ui components
│ │ └── ...
│ └── assets/ # module assets (processed by webpack)
│ └── ...
....
├── index.html # index.html template
└── package.json # build scripts and dependencies
main.js 在 webpack 中作为唯一的 entry,然后在
npm run dev
过程中,通过HtmlWebpackPlugin
自动将通过 main.js 打包的文件插入到了 index.html 中。所以你看不到有哪个地方引用了 main.js,它只出现在了 webpack.base.config.js