项目原始demo,不改动
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
Bu depo arşivlendi. Dosyaları görüntüleyebilir ve klonlayabilirsiniz ama işlem gönderemez ve konu/değişiklik isteği açamazsınız.

webpack.base.conf.js 2.5 KiB

4 yıl önce
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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: ["babel-polyfill", './src/main.js']
  23. },
  24. externals: {
  25. "BMap": "BMap"
  26. },
  27. output: {
  28. path: config.build.assetsRoot,
  29. filename: '[name].js',
  30. publicPath: process.env.NODE_ENV === 'production' ?
  31. config.build.assetsPublicPath : config.dev.assetsPublicPath
  32. },
  33. resolve: {
  34. extensions: ['.js', '.vue', '.json'],
  35. alias: {
  36. 'vue$': 'vue/dist/vue.esm.js',
  37. '@': resolve('src'),
  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: 10000,
  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: 10000,
  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: 10000,
  74. name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
  75. }
  76. }
  77. ]
  78. },
  79. node: {
  80. // prevent webpack from injecting useless setImmediate polyfill because Vue
  81. // source contains it (although only uses it if it's native).
  82. setImmediate: false,
  83. // prevent webpack from injecting mocks to Node native modules
  84. // that does not make sense for the client
  85. dgram: 'empty',
  86. fs: 'empty',
  87. net: 'empty',
  88. tls: 'empty',
  89. child_process: 'empty'
  90. }
  91. // ,
  92. // plugins: [
  93. // new webpack.optimize.CommonsChunkPlugin('common.js'),
  94. // new webpack.ProvidePlugin({
  95. // jQuery: "jquery",
  96. // $: "jquery"
  97. // })
  98. // ]
  99. }