mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 17:30:04 +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 = './'
|
|
}
|
|
}
|
|
],
|
|
}
|