Skip to content
This repository has been archived by the owner on Mar 27, 2019. It is now read-only.

Commit

Permalink
Correct the dist reference for the electron app
Browse files Browse the repository at this point in the history
  • Loading branch information
djenriquez committed Sep 30, 2017
1 parent 17202f6 commit ac5da44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.desktop.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>Vault-UI</title>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600" rel="stylesheet">
<link href="dist/styles.css" rel="stylesheet">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="dist/favicon.ico" type="image/x-icon">
<style type="text/css">
body {
font-family: 'Source Sans Pro', sans-serif;
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = function (env) {
},
output: {
path: path.resolve(__dirname, './dist'),
publicPath: '/dist/',
publicPath: env.target == 'electron' ? 'dist/' : '/dist/',
filename: buildfor + '-bundle.js'
},
module: {
Expand Down

0 comments on commit ac5da44

Please sign in to comment.