Welcome to mirror list, hosted at ThFree Co, Russian Federation.

webpack.config.js - github.com/alanorth/hugo-theme-bootstrap4-blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db0d59956bbf4e57cf93a0cce45817228c887472 (plain)
1
2
3
4
5
6
7
8
9
10
const path = require('path');

module.exports = {
    entry: './source/js/fontawesome.js',
    output: {
            path: path.resolve(__dirname, 'assets/js'),
            filename: 'fontawesome.min.js'
          },
    mode: 'production'
};