mirror of
https://github.com/PanJiaChen/electron-vue-admin.git
synced 2025-04-06 03:57:57 +08:00
18 lines
521 B
Plaintext
18 lines
521 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>electron-vue-admin</title>
|
|
<% if (htmlWebpackPlugin.options.appModules) { %>
|
|
<!-- Add `app/node_modules` to global paths so `require` works properly in development -->
|
|
<script>
|
|
require('module').globalPaths.push('<%= htmlWebpackPlugin.options.appModules.replace(/\\/g, '\\\\') %>')
|
|
</script>
|
|
<% } %>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<!-- webpack builds are automatically injected -->
|
|
</body>
|
|
</html>
|