Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

webpack.config.js 638 B

il y a 2 ans
il y a 2 ans
il y a 2 ans
il y a 2 ans
12345678910111213141516171819202122232425262728
  1. const { VueLoaderPlugin } = require('vue-loader')
  2. const path = require('path')
  3. const Dotenv = require('dotenv-webpack')
  4. module.exports = {
  5. entry: './main.js',
  6. output: {
  7. path: path.resolve(__dirname, 'assets'),
  8. filename: 'app.js'
  9. },
  10. module: {
  11. rules: [
  12. {test: /\.vue$/, use: 'vue-loader'},
  13. {test: /\.css$/, use: ['style-loader', 'css-loader']}
  14. ]
  15. },
  16. devServer: {
  17. static: './assets',
  18. proxy: {
  19. '*': {target: 'http://localhost:8001',
  20. secure: false,
  21. changeOrigin: true
  22. }
  23. }
  24. },
  25. // Required for also applying rules to sections of SFC
  26. plugins: [new VueLoaderPlugin(), new Dotenv({systemVars: true})],
  27. };