2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-09 22:32:24 +03:00
Files
vue-meta/rollup.config.js
T
2016-10-31 07:14:11 +02:00

10 lines
176 B
JavaScript

import buble from 'rollup-plugin-buble'
export default {
entry: './src/index.js',
format: 'umd',
dest: './lib/index.js',
moduleName: 'VueMeta',
plugins: [buble()]
}