TransFlow/node_modules/js-calendar/webpack.config.js

17 lines
260 B
JavaScript

const path = require('path');
const webpack = require('webpack');
module.exports = {
entry: './index.js',
output: {
path: path.resolve(__dirname, 'dist/'),
filename: 'jsCalendar.js'
},
resolve: {
alias: {
jsCalendar: 'vue/dist/vue.js'
}
}
};