From 141702748572a977133ae60ea8b39ce76342d7ce Mon Sep 17 00:00:00 2001 From: elijah Date: Mon, 5 Sep 2016 17:34:11 -0700 Subject: webkit support: get the js and css working in older webkit engines --- src/leap/bitmask_js/webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/leap/bitmask_js/webpack.config.js') diff --git a/src/leap/bitmask_js/webpack.config.js b/src/leap/bitmask_js/webpack.config.js index 7b46e1b1..a29e5753 100644 --- a/src/leap/bitmask_js/webpack.config.js +++ b/src/leap/bitmask_js/webpack.config.js @@ -4,7 +4,7 @@ var CopyWebpackPlugin = require('copy-webpack-plugin'); var config = { context: path.join(__dirname, 'app'), - entry: './main.js', + entry: ['babel-polyfill', './main.js'], output: { path: path.join(__dirname, 'public'), filename: 'app.bundle.js' @@ -47,7 +47,7 @@ var config = { { from: 'img/*'}, { from: 'index.html' }, { from: '../node_modules/bootstrap/dist/css/bootstrap.min.css', to: 'css' }, - { from: '../node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2', to: 'fonts' }, + { from: '../node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff', to: 'fonts' }, { from: '../node_modules/zxcvbn/dist/zxcvbn.js', to: 'js' } ]) ], -- cgit v1.2.3