mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-02-02 19:18:13 -05:00
25 lines
889 B
Plaintext
25 lines
889 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="referrer" content="never">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<title>PicGo</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 -->
|
|
<script>
|
|
if (process.env.NODE_ENV !== 'development') window.__static = require('path').join(__dirname, '/static').replace(/\\/g, '\\\\')
|
|
</script>
|
|
|
|
<!-- webpack builds are automatically injected -->
|
|
</body>
|
|
</html>
|