UNPKG

geopack

Version:

This is a npm package for the geoglows package

31 lines (29 loc) 543 B
// webpack.config.js // var path = require('path'); module.exports = { mode: 'development', entry: './index.js', output: { filename: 'main.js', publicPath: 'dist' }, // devServer: { // contentBase: path.join(__dirname, 'dist'), // compress: true, // port: 8080 // }, module: { rules: [ { test: /\.js$/, exclude: /node_modules/, use: { loader: 'babel-loader', options: { presets: ['@babel/preset-env'] } } } ] }, };