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

webpack.common.js - github.com/matsuyoshi30/harbor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1480d1cc6bfd458757b13570755ce8d43fa9efbb (plain)
1
2
3
4
5
6
7
8
9
const path = require('path')

module.exports = {
    entry: ['./static/src/main.js', './static/src/jquery.mark.min.js'],
    output: {
        path: `${__dirname}/static/js/`,
        filename: 'bundle.js'
    }
};