2019-10-31 15:51:31 +01:00
|
|
|
"use strict";
|
2018-01-17 17:59:50 +01:00
|
|
|
// Template version: 1.2.8
|
|
|
|
// see http://vuejs-templates.github.io/webpack for documentation.
|
|
|
|
|
2019-10-31 15:51:31 +01:00
|
|
|
const path = require("path");
|
2018-01-17 17:59:50 +01:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
dev: {
|
|
|
|
|
|
|
|
// Paths
|
2019-10-31 15:51:31 +01:00
|
|
|
assetsSubDirectory: "static",
|
|
|
|
assetsPublicPath: "/",
|
2018-01-17 17:59:50 +01:00
|
|
|
proxyTable: {},
|
|
|
|
|
|
|
|
// Various Dev Server settings
|
2019-10-31 15:51:31 +01:00
|
|
|
host: "localhost", // can be overwritten by process.env.HOST
|
2018-01-17 17:59:50 +01:00
|
|
|
port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
|
|
|
|
autoOpenBrowser: false,
|
|
|
|
errorOverlay: true,
|
|
|
|
notifyOnErrors: true,
|
|
|
|
poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
|
|
|
|
|
|
|
|
// Use Eslint Loader?
|
|
|
|
// If true, your code will be linted during bundling and
|
|
|
|
// linting errors and warnings will be shown in the console.
|
|
|
|
useEslint: true,
|
|
|
|
// If true, eslint errors and warnings will also be shown in the error overlay
|
|
|
|
// in the browser.
|
|
|
|
showEslintErrorsInOverlay: false,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Source Maps
|
|
|
|
*/
|
|
|
|
|
|
|
|
// https://webpack.js.org/configuration/devtool/#development
|
2019-10-31 15:51:31 +01:00
|
|
|
devtool: "cheap-module-eval-source-map",
|
2018-01-17 17:59:50 +01:00
|
|
|
|
|
|
|
// If you have problems debugging vue-files in devtools,
|
|
|
|
// set this to false - it *may* help
|
|
|
|
// https://vue-loader.vuejs.org/en/options.html#cachebusting
|
|
|
|
cacheBusting: true,
|
|
|
|
|
|
|
|
cssSourceMap: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
build: {
|
|
|
|
// Template for index.html
|
2019-10-31 15:51:31 +01:00
|
|
|
index: path.resolve(__dirname, "../dist/index.html"),
|
2018-01-17 17:59:50 +01:00
|
|
|
|
|
|
|
// Paths
|
2019-10-31 15:51:31 +01:00
|
|
|
assetsRoot: path.resolve(__dirname, "../dist"),
|
|
|
|
assetsSubDirectory: "static",
|
|
|
|
assetsPublicPath: "/tools/slitscan",
|
2018-01-17 17:59:50 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Source Maps
|
|
|
|
*/
|
|
|
|
|
|
|
|
productionSourceMap: true,
|
|
|
|
// https://webpack.js.org/configuration/devtool/#production
|
2019-10-31 15:51:31 +01:00
|
|
|
devtool: "#source-map",
|
2018-01-17 17:59:50 +01:00
|
|
|
|
|
|
|
// Gzip off by default as many popular static hosts such as
|
|
|
|
// Surge or Netlify already gzip all static assets for you.
|
|
|
|
// Before setting to `true`, make sure to:
|
|
|
|
// npm install --save-dev compression-webpack-plugin
|
|
|
|
productionGzip: false,
|
2019-10-31 15:51:31 +01:00
|
|
|
productionGzipExtensions: ["js", "css"],
|
2018-01-17 17:59:50 +01:00
|
|
|
|
|
|
|
// Run the build command with an extra argument to
|
|
|
|
// View the bundle analyzer report after build finishes:
|
|
|
|
// `npm run build --report`
|
|
|
|
// Set to `true` or `false` to always turn it on or off
|
2019-10-31 15:51:31 +01:00
|
|
|
bundleAnalyzerReport: process.env.npm_config_report,
|
|
|
|
},
|
|
|
|
};
|