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

webpack.config.js - github.com/nextcloud/twofactor_gateway.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4059a9b672db4e51db0dfceeebafe55742b040a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
const { merge } = require('webpack-merge');
const webpackConfig = require('@nextcloud/webpack-vue-config')

module.exports = merge([
  webpackConfig,
  {
    entry: './src/main.js',
    output: {
      filename: 'build.js',
    }
  }
])