synclounge/vue.config.js

55 lines
1.1 KiB
JavaScript
Raw Permalink Normal View History

2020-05-27 19:34:29 +00:00
const path = require('path');
const config = require('./config');
2020-05-28 08:26:36 +00:00
const configFile = 'public/config.json';
const appConfig = config.get(configFile);
console.log(appConfig);
config.save(appConfig, configFile);
2020-05-28 08:26:36 +00:00
const pkgVersion = require('./package.json').version;
process.env.VUE_APP_VERSION = process.env.VERSION || pkgVersion;
2020-06-10 05:14:51 +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-09-05 22:57:37 +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,
},
chainWebpack: (conf) => {
conf
.plugin('html')
.tap((args) => {
// eslint-disable-next-line no-param-reassign
args[0].title = 'SyncLounge';
return args;
});
},
};