mirror of https://github.com/Fabio286/antares.git
23 lines
547 B
Plaintext
23 lines
547 B
Plaintext
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title></title>
|
||
|
<script>
|
||
|
global = globalThis
|
||
|
</script>
|
||
|
<% if (htmlWebpackPlugin.options.nodeModules) { %>
|
||
|
<script>
|
||
|
require('module').globalPaths.push(
|
||
|
`<%= htmlWebpackPlugin.options.nodeModules.replace(/\\/g, '\\\\') %>`
|
||
|
)
|
||
|
</script>
|
||
|
<% } %>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="app"></div>
|
||
|
<!-- webpack builds are automatically injected -->
|
||
|
</body>
|
||
|
</html>
|