webpack.base.conf.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. 'use strict'
  2. const path = require('path')
  3. const utils = require('./utils')
  4. const config = require('../config')
  5. const vueLoaderConfig = require('./vue-loader.conf')
  6. const webpack = require('webpack')
  7. function resolve (dir) {
  8. return path.join(__dirname, '..', dir)
  9. }
  10. const createLintingRule = () => ({
  11. test: /\.(js|vue)$/,
  12. loader: 'eslint-loader',
  13. enforce: 'pre',
  14. include: [resolve('src'), resolve('test')],
  15. options: {
  16. formatter: require('eslint-friendly-formatter'),
  17. emitWarning: !config.dev.showEslintErrorsInOverlay
  18. }
  19. })
  20. module.exports = {
  21. context: path.resolve(__dirname, '../'),
  22. entry: {
  23. app: './src/main.js'
  24. },
  25. output: {
  26. path: config.build.assetsRoot,
  27. filename: '[name].js',
  28. publicPath: process.env.NODE_ENV === 'production'
  29. ? config.build.assetsPublicPath
  30. : config.dev.assetsPublicPath
  31. },
  32. resolve: {
  33. extensions: ['.js', '.vue', '.json'],
  34. alias: {
  35. 'vue$': 'vue/dist/vue.esm.js',
  36. '@': resolve('src'),
  37. 'jquery': 'jquery'
  38. }
  39. },
  40. module: {
  41. rules: [
  42. ...(config.dev.useEslint ? [createLintingRule()] : []),
  43. {
  44. test: /\.vue$/,
  45. loader: 'vue-loader',
  46. options: vueLoaderConfig
  47. },
  48. {
  49. test: /\.js$/,
  50. loader: 'babel-loader',
  51. include: [resolve('src'), resolve('test'), resolve('node_modules/webpack-dev-server/client')]
  52. },
  53. {
  54. test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
  55. loader: 'url-loader',
  56. options: {
  57. limit: 1000,
  58. name: utils.assetsPath('img/[name].[hash:7].[ext]'),
  59. }
  60. },
  61. {
  62. test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
  63. loader: 'url-loader',
  64. options: {
  65. limit: 1024*1000,
  66. name: utils.assetsPath('media/[name].[hash:7].[ext]')
  67. }
  68. },
  69. {
  70. test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
  71. loader: 'url-loader',
  72. options: {
  73. limit: 1024*1000,
  74. name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
  75. }
  76. }
  77. ]
  78. },
  79. plugins:[
  80. new webpack.ProvidePlugin({
  81. $:'jquery',
  82. jQuery: 'jquery'
  83. })
  84. ],
  85. node: {
  86. // prevent webpack from injecting useless setImmediate polyfill because Vue
  87. // source contains it (although only uses it if it's native).
  88. setImmediate: false,
  89. // prevent webpack from injecting mocks to Node native modules
  90. // that does not make sense for the client
  91. dgram: 'empty',
  92. fs: 'empty',
  93. net: 'empty',
  94. tls: 'empty',
  95. child_process: 'empty'
  96. }
  97. }