webpack.dev.conf.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. 'use strict'
  2. const utils = require('./utils')
  3. const webpack = require('webpack')
  4. const config = require('../config')
  5. const merge = require('webpack-merge')
  6. const path = require('path')
  7. const baseWebpackConfig = require('./webpack.base.conf')
  8. const CopyWebpackPlugin = require('copy-webpack-plugin')
  9. const HtmlWebpackPlugin = require('html-webpack-plugin')
  10. const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')
  11. const portfinder = require('portfinder')
  12. const HOST = process.env.HOST
  13. const PORT = process.env.PORT && Number(process.env.PORT)
  14. const devWebpackConfig = merge(baseWebpackConfig, {
  15. module: {
  16. rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap, usePostCSS: true })
  17. },
  18. // cheap-module-eval-source-map is faster for development
  19. devtool: config.dev.devtool,
  20. // these devServer options should be customized in /config/index.js
  21. devServer: {
  22. clientLogLevel: 'warning',
  23. historyApiFallback: {
  24. rewrites: [
  25. { from: /.*/, to: path.posix.join(config.dev.assetsPublicPath, 'index.html') },
  26. ],
  27. },
  28. hot: true,
  29. contentBase: false, // since we use CopyWebpackPlugin.
  30. compress: true,
  31. host: HOST || config.dev.host,
  32. port: PORT || config.dev.port,
  33. open: config.dev.autoOpenBrowser,
  34. overlay: config.dev.errorOverlay
  35. ? { warnings: false, errors: true }
  36. : false,
  37. publicPath: config.dev.assetsPublicPath,
  38. proxy: config.dev.proxyTable,
  39. quiet: true, // necessary for FriendlyErrorsPlugin
  40. watchOptions: {
  41. poll: config.dev.poll,
  42. }
  43. },
  44. plugins: [
  45. new webpack.DefinePlugin({
  46. 'process.env': require('../config/dev.env')
  47. }),
  48. new webpack.HotModuleReplacementPlugin(),
  49. new webpack.NamedModulesPlugin(), // HMR shows correct file names in console on update.
  50. new webpack.NoEmitOnErrorsPlugin(),
  51. // https://github.com/ampedandwired/html-webpack-plugin
  52. /* 注释这个区域的文件 ------------- 开始 */
  53. // new HtmlWebpackPlugin({
  54. // filename: 'index.html',
  55. // template: 'index.html',
  56. // inject: true
  57. // }),
  58. /* 注释这个区域的文件 ------------- 结束 */
  59. // copy custom static assets
  60. new CopyWebpackPlugin([
  61. {
  62. from: path.resolve(__dirname, '../static'),
  63. to: config.dev.assetsSubDirectory,
  64. ignore: ['.*']
  65. }
  66. ])
  67. /* 添加 .concat(utils.htmlPlugin()) ------------------ */
  68. ].concat(utils.htmlPlugin())
  69. })
  70. module.exports = new Promise((resolve, reject) => {
  71. portfinder.basePort = process.env.PORT || config.dev.port
  72. portfinder.getPort((err, port) => {
  73. if (err) {
  74. reject(err)
  75. } else {
  76. // publish the new Port, necessary for e2e tests
  77. process.env.PORT = port
  78. // add port to devServer config
  79. devWebpackConfig.devServer.port = port
  80. // Add FriendlyErrorsPlugin
  81. devWebpackConfig.plugins.push(new FriendlyErrorsPlugin({
  82. compilationSuccessInfo: {
  83. messages: [`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`],
  84. },
  85. onErrors: config.dev.notifyOnErrors
  86. ? utils.createNotifierCallback()
  87. : undefined
  88. }))
  89. resolve(devWebpackConfig)
  90. }
  91. })
  92. })