mirror of https://github.com/Lissy93/dashy.git
55 lines
1.3 KiB
JavaScript
55 lines
1.3 KiB
JavaScript
/**
|
|
* Global config for the main Vue app. ES7 not supported here.
|
|
* See docs for all config options: https://cli.vuejs.org/config
|
|
*/
|
|
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
|
|
|
|
// Get current version
|
|
process.env.VUE_APP_VERSION = require('./package.json').version;
|
|
|
|
// Get default info for PWA
|
|
const { pwa } = require('./src/utils/defaults');
|
|
|
|
// Get base URL
|
|
const publicPath = process.env.BASE_URL || '/';
|
|
|
|
// Should enable Subresource Integrity (SRI) on link and script tags
|
|
const integrity = process.env.INTEGRITY === 'true';
|
|
|
|
// Format for progress bar, shown while app building
|
|
const progressFormat = '\x1b[1m\x1b[36mBuilding Dashy\x1b[0m '
|
|
+ '[\x1b[1m\x1b[32m:bar\x1b[0m] :percent (:elapsed seconds)';
|
|
|
|
// Webpack Config
|
|
const configureWebpack = {
|
|
performance: { hints: false },
|
|
module: {
|
|
rules: [
|
|
{ test: /.svg$/, loader: 'vue-svg-loader' },
|
|
],
|
|
},
|
|
plugins: [
|
|
new ProgressBarPlugin({ format: progressFormat }),
|
|
],
|
|
};
|
|
|
|
// Application pages
|
|
const pages = {
|
|
dashy: {
|
|
entry: 'src/main.js',
|
|
filename: 'index.html',
|
|
},
|
|
};
|
|
|
|
// Export the main Vue app config
|
|
module.exports = {
|
|
publicPath,
|
|
pwa,
|
|
integrity,
|
|
configureWebpack,
|
|
pages,
|
|
chainWebpack: config => {
|
|
config.module.rules.delete('svg');
|
|
},
|
|
};
|