AntimatterDimensionsSourceCode/vue.config.js

16 lines
350 B
JavaScript
Raw Permalink Normal View History

/**
* @type {import('@vue/cli-service').ProjectOptions}
*/
2022-11-30 00:03:24 +00:00
2023-02-16 19:17:23 +00:00
const DEV = process.env.VUE_APP_DEV === "true";
const STEAM = process.env.VUE_APP_STEAM === "true";
2022-11-30 00:03:24 +00:00
module.exports = {
publicPath: "./",
lintOnSave: false,
2023-02-16 19:17:23 +00:00
outputDir: STEAM ? "../AppFiles" : "dist",
configureWebpack: {
2023-02-16 19:17:23 +00:00
devtool: DEV ? "eval-source-map" : "source-map",
2022-11-30 00:03:24 +00:00
}
};