Guest User

Untitled

a guest
Jan 18th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. const webpack = require('webpack')
  2.  
  3. module.exports = {
  4. configureWebpack: {
  5. plugins: [
  6. new webpack.optimize.LimitChunkCountPlugin({
  7. maxChunks: 1
  8. })
  9. ]
  10. },
  11. chainWebpack:
  12. config => {
  13. config.optimization.delete('splitChunks')
  14. }
  15. }
  16.  
  17. `file:///C:/css/app.11f77a6e.css`
  18.  
  19. const path = require('path');
  20.  
  21. module.exports = {
  22. output: {
  23. path: path.resolve(__dirname, 'dist')
  24. }
  25. }
  26.  
  27. {
  28. "name": "build-flow",
  29. "version": "0.1.0",
  30. "private": true,
  31. "scripts": {
  32. "serve": "vue-cli-service serve",
  33. "build": "vue-cli-service build"
  34. },
  35. "dependencies": {
  36. "vue": "^2.5.21",
  37. "vue-custom-element": "^3.2.6",
  38. "webpack": "^4.28.4"
  39. },
  40. "devDependencies": {
  41. "@vue/cli-plugin-babel": "^3.3.0",
  42. "@vue/cli-service": "^3.3.0",
  43. "vue-template-compiler": "^2.5.21"
  44. }
  45. }
Add Comment
Please, Sign In to add comment