webpack.base.conf.js 2.6 KB

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