UNPKG

vue-invisible-recaptcha

Version:
30 lines (25 loc) 510 B
var path = require('path'); var webpack = require('webpack'); module.exports = { entry: './src/DataTable.vue', output: { path: path.resolve(__dirname, './dist'), filename: 'vue-datatable.js' }, module: { loaders: [ { test: /\.js$/, loader: 'babel', exclude: /node_modules/, include: [path.resolve(__dirname, './src')] }, { test: /\.vue$/, loader: 'vue'} ] }, vue: { loaders: { scss: "vue-style!css!sass" } }, }