UNPKG

vue-simple-addthis-share

Version:
31 lines (29 loc) 664 B
const path = require('path'); const VueLoaderPlugin = require('vue-loader/lib/plugin') module.exports = { entry: './src/main.js', mode: 'production', output: { path: path.resolve(__dirname, './dist'), filename: 'addthis.js', library: "AddThis", libraryTarget: "commonjs2", }, module: { rules: [ { test: /\.vue$/, loader: 'vue-loader', }, { test: /\.js$/, use: 'babel-loader' } ] }, plugins: [ new VueLoaderPlugin({ productionMode: true }) ] }