mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-16 17:27:04 +01:00
11 lines
243 B
JavaScript
11 lines
243 B
JavaScript
|
const path = require('path');
|
||
|
|
||
|
module.exports = {
|
||
|
entry: './source/js/fontawesome.js',
|
||
|
output: {
|
||
|
path: path.resolve(__dirname, 'assets/js'),
|
||
|
filename: 'fontawesome.min.js'
|
||
|
},
|
||
|
mode: 'production'
|
||
|
};
|