mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 13:50:05 +08:00
12 lines
211 B
JavaScript
12 lines
211 B
JavaScript
|
module.exports = {
|
||
|
plugins: [
|
||
|
(poi) => {
|
||
|
const isBuild = poi.command === 'build'
|
||
|
if (isBuild) {
|
||
|
poi.options.sourceMap = false
|
||
|
poi.options.publicPath = './'
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
}
|