1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 06:13:38 +00:00

2fa page for duo in safari

This commit is contained in:
Kyle Spearrin
2018-01-18 14:40:23 -05:00
parent bdc3eb559c
commit a3d3aac8be
7 changed files with 97 additions and 12 deletions

View File

@@ -24,6 +24,7 @@ module.exports = {
'content/shortcuts': './src/content/shortcuts.js',
'notification/bar': './src/notification/bar.js',
'downloader/downloader': './src/downloader/downloader.ts',
'2fa/2fa': './src/2fa/2fa.ts',
},
module: {
rules: [
@@ -101,6 +102,11 @@ module.exports = {
filename: 'downloader/index.html',
chunks: ['downloader/downloader']
}),
new HtmlWebpackPlugin({
template: './src/2fa/index.html',
filename: '2fa/index.html',
chunks: ['2fa/2fa']
}),
new CopyWebpackPlugin([
'./src/manifest.json',
{ from: './src/_locales', to: '_locales' },