diff --git a/.gitignore b/.gitignore index fdcc67864..4dad45d17 100755 --- a/.gitignore +++ b/.gitignore @@ -51,6 +51,8 @@ dist/ /app/static/app/scripts/jquery.validate.js /app/static/app/scripts/marked.min.js /app/static/app/css/bootstrap.css +/app/static/app/css/bootstrap.css.map +/app/static/app/fonts/ /blast/static/blast/scripts/active-line.js /blast/static/blast/scripts/codemirror.js diff --git a/app/static/app/fonts/glyphicons-halflings-regular.eot b/app/static/app/fonts/glyphicons-halflings-regular.eot deleted file mode 100755 index 87eaa4342..000000000 Binary files a/app/static/app/fonts/glyphicons-halflings-regular.eot and /dev/null differ diff --git a/app/static/app/fonts/glyphicons-halflings-regular.svg b/app/static/app/fonts/glyphicons-halflings-regular.svg deleted file mode 100755 index 5fee06854..000000000 --- a/app/static/app/fonts/glyphicons-halflings-regular.svg +++ /dev/null @@ -1,228 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/static/app/fonts/glyphicons-halflings-regular.ttf b/app/static/app/fonts/glyphicons-halflings-regular.ttf deleted file mode 100755 index be784dc1d..000000000 Binary files a/app/static/app/fonts/glyphicons-halflings-regular.ttf and /dev/null differ diff --git a/app/static/app/fonts/glyphicons-halflings-regular.woff b/app/static/app/fonts/glyphicons-halflings-regular.woff deleted file mode 100755 index 2cc3e4852..000000000 Binary files a/app/static/app/fonts/glyphicons-halflings-regular.woff and /dev/null differ diff --git a/webpack.config.js b/webpack.config.js index 7ca4b2461..62f0a8ab6 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -6,6 +6,7 @@ const nodeModules = path.resolve(__dirname, 'node_modules'); const appScripts = path.resolve(__dirname, 'app/static/app/scripts'); const appStyles = path.resolve(__dirname, 'app/static/app/css'); +const appFonts = path.resolve(__dirname, 'app/static/app/fonts'); const appScriptConfig = { entry: path.join(nodeModules, '/jquery/dist/jquery.js'), // Just a fake entry, we only copy files here output: { @@ -22,6 +23,12 @@ const appScriptConfig = { { from: path.join(nodeModules, '/underscore/underscore.js'), to: appScripts}, { from: path.join(nodeModules, '/Respond.js/dest/respond.src.js'), to: appScripts}, { from: path.join(nodeModules, '/bootstrap/dist/css/bootstrap.css'), to: appStyles}, + { from: path.join(nodeModules, '/bootstrap/dist/css/bootstrap.css.map'), to: appStyles}, + { from: path.join(nodeModules, '/bootstrap/dist/fonts/glyphicons-halflings-regular.eot'), to: appFonts}, + { from: path.join(nodeModules, '/bootstrap/dist/fonts/glyphicons-halflings-regular.svg'), to: appFonts}, + { from: path.join(nodeModules, '/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf'), to: appFonts}, + { from: path.join(nodeModules, '/bootstrap/dist/fonts/glyphicons-halflings-regular.woff'), to: appFonts}, + { from: path.join(nodeModules, '/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2'), to: appFonts}, ]) ], module: {