summaryrefslogtreecommitdiff
path: root/web-ui/config/public-assets-webpack.js
blob: 13364e2c42631cf31ed211d7f23b0fa283e5b082 (plain)
1
2
3
4
5
6
7
8
9
10
11
var CopyWebpackPlugin = require('copy-webpack-plugin');

module.exports = new CopyWebpackPlugin([
  { context: 'src/login/', from: '*.html' },
  { context: 'src/login/', from: '*.css' },
  { context: 'src/account_recovery/', from: 'account_recovery.html' },
  { context: 'src/interstitial/', from: '*' },
  { context: 'app/', from: 'fonts/*' },
  { context: 'app/', from: 'locales/**/*' },
  { context: 'app/', from: 'images/**/*' }
]);