parvus-ui
Version:
A micro UI kit with all the main UI components in less than 5KB
23 lines (21 loc) • 439 B
JavaScript
const webpack = require("webpack");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const path = require("path");
module.exports = {
target: "web",
entry: "./examples",
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: ["babel-loader", "eslint-loader"]
}
]
},
plugins: [new HtmlWebpackPlugin()],
devtool: "source-map",
devServer: {
port: 3000
}
};