2
0
mirror of https://github.com/frappe/books.git synced 2024-12-25 20:11:15 +00:00
books/src/index.html

18 lines
499 B
HTML
Raw Normal View History

2018-07-29 11:50:10 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Frappe Accounting</title>
2018-10-20 12:32:01 +00:00
<% if (htmlWebpackPlugin.options.nodeModules) { %>
<script>
require('module').globalPaths.push('<%= htmlWebpackPlugin.options.nodeModules.replace(/\\/g, '\\\\') %>')
</script>
<% } %>
2018-07-29 11:50:10 +00:00
</head>
<body>
<div id="app"></div>
</body>
2019-11-24 18:09:45 +00:00
</html>