webpack.base.conf.js 2.3 KB

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