mirror of
https://github.com/tenrok/vue-ganttastic.git
synced 2026-06-18 02:30:32 +03:00
18 lines
416 B
JavaScript
18 lines
416 B
JavaScript
const isBuildLib =
|
|
(process.env.npm_lifecycle_script || '').indexOf('--target lib') > 0
|
|
|
|
module.exports = {
|
|
publicPath: '',
|
|
outputDir: isBuildLib ? 'dist' : 'demo',
|
|
css: { extract: true },
|
|
productionSourceMap: false,
|
|
chainWebpack: config => {
|
|
if (process.env.VUE_CLI_BUILD_TARGET === 'lib') {
|
|
config.externals({
|
|
...config.get('externals'),
|
|
moment: 'moment'
|
|
})
|
|
}
|
|
}
|
|
}
|