summaryrefslogtreecommitdiff
path: root/electron/src/index.ejs
diff options
context:
space:
mode:
authorrejbasket <39080670+rejbasket@users.noreply.github.com>2023-05-22 22:33:19 +0200
committerGitHub <noreply@github.com>2023-05-22 22:33:19 +0200
commitef6f6580df6e8fbce913eecc1fe7e0f8caf1315b (patch)
treec1119a5d1affd44ad27e60cc6981ac98534c518d /electron/src/index.ejs
parentda54f104e6bf5d0e98f7479cf1d060c76e0b01f2 (diff)
Update electron version to v14.2.9 (#2214)
Authored-by: rejbasket Co-authored-by: Kaalleen Co-authored-by: Lex Neva
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>