vue-cli-plugin-easy-clm
Version:
Plugin based on vue-cli, help to develope in MI Touch, Pharma Touch and Veeva CRM
21 lines (18 loc) • 628 B
JavaScript
module.exports = {
baseUrl: process.env.NODE_ENV === 'development' ? '/' : './',
productionSourceMap: false,
css: {
loaderOptions: {
sass: {
// Enable all sass-files in directory 'shared' to all sass styles
// Do not include any files here which will have actual css output,
// otherwise our bundle file size will grow rapidly as the output will be in every file.
data: require('./src/style/shared')
}
}
},
// Delete prefetch plugin because, slide don't use all chunks which webpack created
chainWebpack: config => {
config.plugins.delete('prefetch')
}
};