vue-mover
Version:
A simple list picker vue-component, with drag and drop and sortable items.
21 lines (19 loc) • 415 B
JavaScript
var CopyWebpackPlugin = require('copy-webpack-plugin');
var path = require('path');
module.exports = {
entry: './vue-mover.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'vue-mover.js',
},
plugins: [
new CopyWebpackPlugin([
{ from: 'vue-mover.css' }
]),
],
externals: {
sortablejs: {
root: "Sortable"
}
}
};