helvetic
6/14/2018 - 7:22 AM

whew

whew

 // CSS related options
 module.exports =  {
  css: {
    // extract CSS in components into a single CSS file (only in production)
    // can also be an object of options to pass to extract-text-webpack-plugin
    extract: true,

    // enable CSS source maps?
    sourceMap: true,

    // pass custom options to pre-processor loaders. e.g. to pass options to
    // sass-loader, use { sass: { ... } }
    loaderOptions: {
      // postcss: [ require('postcss-nested') ]
    },

    // Enable CSS modules for all css / pre-processor files.
    // This option does not affect *.vue files.
    // modules: true
  },

  devServer: {
    port: 8081,
    proxy: {
      '/sendmail.php': {
        target: 'http://cabinetry/email/sendmail.php'
      },
      '/test': {
        target: 'http://google.ru/'
      }
    }
  }

}