webpack.dev.conf.js 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 baseWebpackConfig = require('./webpack.base.conf')
  7. const HtmlWebpackPlugin = require('html-webpack-plugin')
  8. const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')
  9. const portfinder = require('portfinder')
  10. const HOST = process.env.HOST
  11. const PORT = process.env.PORT && Number(process.env.PORT)
  12. const devWebpackConfig = merge(baseWebpackConfig, {
  13. module: {
  14. rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap, usePostCSS: true })
  15. },
  16. // cheap-module-eval-source-map is faster for development
  17. devtool: config.dev.devtool,
  18. // these devServer options should be customized in /config/index.js
  19. devServer: {
  20. clientLogLevel: 'warning',
  21. historyApiFallback: true,
  22. hot: true,
  23. compress: true,
  24. host: HOST || config.dev.host,
  25. port: PORT || config.dev.port,
  26. open: config.dev.autoOpenBrowser,
  27. overlay: config.dev.errorOverlay
  28. ? { warnings: false, errors: true }
  29. : false,
  30. publicPath: config.dev.assetsPublicPath,
  31. proxy: config.dev.proxyTable,
  32. quiet: true, // necessary for FriendlyErrorsPlugin
  33. watchOptions: {
  34. poll: config.dev.poll,
  35. }
  36. },
  37. plugins: [
  38. new webpack.DefinePlugin({
  39. 'process.env': require('../config/dev.env')
  40. }),
  41. new webpack.HotModuleReplacementPlugin(),
  42. new webpack.NamedModulesPlugin(), // HMR shows correct file names in console on update.
  43. new webpack.NoEmitOnErrorsPlugin(),
  44. // https://github.com/ampedandwired/html-webpack-plugin
  45. new HtmlWebpackPlugin({
  46. filename: config.dev.filename,
  47. template: config.dev.indexTemplate,
  48. inject: true,
  49. BASE_URL:config.dev.BASE_URL
  50. }),
  51. ]
  52. })
  53. module.exports = new Promise((resolve, reject) => {
  54. portfinder.basePort = process.env.PORT || config.dev.port
  55. portfinder.getPort((err, port) => {
  56. if (err) {
  57. reject(err)
  58. } else {
  59. // publish the new Port, necessary for e2e tests
  60. process.env.PORT = port
  61. // add port to devServer config
  62. devWebpackConfig.devServer.port = port
  63. // Add FriendlyErrorsPlugin
  64. devWebpackConfig.plugins.push(new FriendlyErrorsPlugin({
  65. compilationSuccessInfo: {
  66. messages: [`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`],
  67. },
  68. onErrors: config.dev.notifyOnErrors
  69. ? utils.createNotifierCallback()
  70. : undefined
  71. }))
  72. resolve(devWebpackConfig)
  73. }
  74. })
  75. })