synclounge/vue.config.js

57 lines
1.4 KiB
JavaScript
Raw Normal View History

2020-05-27 19:34:29 +00:00
const path = require('path');
const LCL = require('last-commit-log');
const lcl = new LCL();
2020-05-27 19:34:29 +00:00
2020-07-21 21:28:48 +00:00
const saveConfig = require('./config');
2020-05-28 08:26:36 +00:00
2020-07-21 21:28:48 +00:00
const config = saveConfig('public/config.json');
console.log(config);
2020-05-28 08:26:36 +00:00
2020-06-10 05:14:51 +00:00
process.env.VUE_APP_VERSION = require('./package.json').version;
2020-06-11 02:42:38 +00:00
try {
const lastCommit = lcl.getLastCommitSync();
2020-07-24 21:25:45 +00:00
process.env.VUE_APP_GIT_HASH = lastCommit.shortHash;
process.env.VUE_APP_GIT_DATE = lastCommit.committer.date;
process.env.VUE_APP_GIT_BRANCH = lastCommit.gitBranch;
2020-06-11 02:42:38 +00:00
} catch (e) {
// Sometimes on CI stuff they build with .git being present
2020-07-21 02:27:43 +00:00
// TODO: find better way to do this
2020-07-24 21:25:45 +00:00
process.env.VUE_APP_GIT_DATE = Math.floor(Date.now() / 1000);
process.env.VUE_APP_GIT_HASH = process.env.REVISION;
process.env.VUE_APP_GIT_BRANCH = process.env.SOURCE_BRANCH;
2020-06-11 02:42:38 +00:00
}
module.exports = {
// Relative publicPath to support subfolders
publicPath: '',
2020-05-27 18:41:08 +00:00
transpileDependencies: ['vuetify'],
integrity: true,
2020-05-26 00:33:24 +00:00
configureWebpack: {
2020-05-27 19:34:29 +00:00
resolve: {
alias: {
// Alias @ to /src folder for ES/TS imports
'@': path.join(__dirname, '/src'),
},
},
2020-06-07 05:22:11 +00:00
node: false,
2020-05-27 18:41:08 +00:00
},
2020-06-08 04:58:10 +00:00
2020-08-06 20:27:40 +00:00
pluginOptions: {
lintStyleOnBuild: true,
stylelint: {},
},
2020-06-08 04:58:10 +00:00
2020-08-04 21:14:58 +00:00
// devServer: {
// disableHostCheck: true,
// },
2020-08-05 01:59:32 +00:00
// https://github.com/vuejs/vue-cli/issues/3771
2020-06-08 04:59:42 +00:00
css: {
extract: process.env.NODE_ENV === 'production' ? {
ignoreOrder: true,
} : false,
},
};