徐总多门店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
394 B

import vue from 'rollup-plugin-vue'
import autoprefixer from 'autoprefixer'
import precss from 'precss'
export default [
{
input: './src/index.vue',
output: {
format: 'esm',
file: 'dist/picker.esm.js'
},
plugins: [
vue({
style: {
postcssPlugins: [
precss(),
autoprefixer()
]
}
})
]
}
]