webpack.dev.conf.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. disableHostCheck: true,
  33. port: PORT || config.dev.port,
  34. open: config.dev.autoOpenBrowser,
  35. overlay: config.dev.errorOverlay
  36. ? { warnings: false, errors: true }
  37. : false,
  38. publicPath: config.dev.assetsPublicPath,
  39. proxy: config.dev.proxyTable,
  40. quiet: true, // necessary for FriendlyErrorsPlugin
  41. watchOptions: {
  42. poll: config.dev.poll,
  43. }
  44. },
  45. plugins: [
  46. new webpack.DefinePlugin({
  47. 'process.env': require('../config/dev.env')
  48. }),
  49. new webpack.HotModuleReplacementPlugin(),
  50. new webpack.NamedModulesPlugin(), // HMR shows correct file names in console on update.
  51. new webpack.NoEmitOnErrorsPlugin(),
  52. // https://github.com/ampedandwired/html-webpack-plugin
  53. new HtmlWebpackPlugin({
  54. filename: 'index.html',
  55. template: 'index.html',
  56. inject: true
  57. }),
  58. // copy custom static assets
  59. new CopyWebpackPlugin([
  60. {
  61. from: path.resolve(__dirname, '../static'),
  62. to: config.dev.assetsSubDirectory,
  63. ignore: ['.*']
  64. }
  65. ])
  66. ]
  67. })
  68. module.exports = new Promise((resolve, reject) => {
  69. portfinder.basePort = process.env.PORT || config.dev.port
  70. portfinder.getPort((err, port) => {
  71. if (err) {
  72. reject(err)
  73. } else {
  74. // publish the new Port, necessary for e2e tests
  75. process.env.PORT = port
  76. // add port to devServer config
  77. devWebpackConfig.devServer.port = port
  78. // Add FriendlyErrorsPlugin
  79. devWebpackConfig.plugins.push(new FriendlyErrorsPlugin({
  80. compilationSuccessInfo: {
  81. messages: [`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`],
  82. },
  83. onErrors: config.dev.notifyOnErrors
  84. ? utils.createNotifierCallback()
  85. : undefined
  86. }))
  87. resolve(devWebpackConfig)
  88. }
  89. })
  90. })