You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

102 lines
2.6 KiB

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