summaryrefslogtreecommitdiff
path: root/electron/src/index.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'electron/src/index.ejs')
-rw-r--r--electron/src/index.ejs32
1 files changed, 0 insertions, 32 deletions
diff --git a/electron/src/index.ejs b/electron/src/index.ejs
deleted file mode 100644
index 381a86c7..00000000
--- a/electron/src/index.ejs
+++ /dev/null
@@ -1,32 +0,0 @@
-<!--
-
- Authors: see git history
-
- Copyright (c) 2010 Authors
- Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
-
--->
-<!DOCTYPE html>
-<html>
- <head>
- <meta charset="utf-8">
- <title>inkstitch-gui</title>
- <% if (htmlWebpackPlugin.options.nodeModules) { %>
- <!-- Add `node_modules/` to global paths so `require` works properly in development -->
- <script>
- require('module').globalPaths.push('<%= htmlWebpackPlugin.options.nodeModules.replace(/\\/g, '\\\\') %>')
- </script>
- <% } %>
- </head>
- <body>
- <div id="app"></div>
- <!-- Set `__static` path to static files in production -->
- <% if (!process.browser) { %>
- <script>
- if (process.env.NODE_ENV !== 'development') window.__static = require('path').join(__dirname, '/static').replace(/\\/g, '\\\\')
- </script>
- <% } %>
-
- <!-- webpack builds are automatically injected -->
- </body>
-</html>