vue-awesome-notifications
Version:
Vue.js version of Awesome Notifications JavaScript library
24 lines (22 loc) • 422 B
JavaScript
var path = require("path")
var webpack = require("webpack")
module.exports = [
{
entry: ["./src/index.js"],
output: {
path: path.resolve(__dirname, "./dist"),
filename: "index.js",
library: "AWN",
libraryTarget: "umd"
},
module: {
rules: [
{
test: /\.js$/,
loader: "babel-loader",
exclude: /node_modules/
}
]
}
}
]