Quick-fix tooltips not being loaded by Webpack

This commit is contained in:
Jérémie Astori 2018-04-17 23:07:12 +02:00
parent 3f540a8240
commit 235a3dad92
No known key found for this signature in database
GPG key ID: B9A4F245CD67BDE8
3 changed files with 6 additions and 1 deletions

View file

@ -1,6 +1,5 @@
@import "fontawesome.css";
@import "bootstrap.css";
@import "../../node_modules/primer-tooltips/build/build.css";
:root {
/* Links and link-looking buttons */

View file

@ -7,6 +7,8 @@
<link rel="preload" as="script" href="js/bundle.vendor.js">
<link rel="preload" as="script" href="js/bundle.js">
<link rel="stylesheet" href="css/primer-tooltips.css">
<link rel="stylesheet" href="css/style.css">
<link id="theme" rel="stylesheet" href="themes/<%- theme %>.css" data-server-theme="<%- theme %>">
<% _.forEach(stylesheets, function(css) { %>

View file

@ -114,6 +114,10 @@ const config = {
from: "./client/themes/*",
to: "themes/[name].[ext]",
},
{
from: "./node_modules/primer-tooltips/build/build.css",
to: "css/primer-tooltips.[ext]",
},
]),
// socket.io uses debug, we don't need it
new webpack.NormalModuleReplacementPlugin(/debug/, path.resolve(__dirname, "scripts/noop.js")),