vue-smooth-scroll
Version:
Simple vue smooth scroll
21 lines • 402 B
JavaScript
var webpack = require('webpack')
module.exports = {
entry: './index.js',
output: {
path: './dist',
filename: 'vue-smooth-scroll.min.js',
library: 'VueSmoothScroll',
libraryTarget: 'umd'
},
module: {
loaders: [
{ test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader',
query: {
presets: ['es2015']
}
}
]
}
}