UNPKG

@iconscout/unicons

Version:

Ready to use font icons for your next project

37 lines (35 loc) 738 B
const path = require('path') const webpack = require('webpack') module.exports = { mode: 'production', entry: ['regenerator-runtime/runtime', './scripts/monochrome/script.js'], target: 'node', devtool: 'source-map', output: { path: path.resolve(__dirname, 'script/monochrome'), filename: 'bundle.js', publicPath: 'script/monochrome/', clean: true, }, module: { rules: [ { use: 'babel-loader', exclude: /node_modules/, test: /\.js$/, }, ], }, plugins: [ new webpack.EnvironmentPlugin(['CI_COMMIT_REF_NAME', 'RELEASE_DIR']), ], optimization: { minimize: true, splitChunks: false, }, resolve: { fallback: { fs: false, }, }, }