c3dba863c1
* Adding support for embed the webapp into the plugin * Adding required dependency * Removed unnecessary prettier command * Installed imagemin required dependencies * Open in a new window always * Fix CSS Conflicts. * Changing the app id to make it specific to focalboard * Adding error boundary * Fix styles on non-plugin environments * Making the css scoped to focalboard only * Create the focalboard root portal * Including missed component * Adding a missed rollback call Co-authored-by: Christopher Speller <crspeller@gmail.com> Co-authored-by: Hossein <hahmadia@users.noreply.github.com>
23 lines
559 B
Text
23 lines
559 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0'>
|
|
|
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
|
|
|
<script>window.baseURL = '{{.BaseURL}}'</script>
|
|
<link rel="icon" href="{{.BaseURL}}/static/favicon.svg?v=1" />
|
|
<link rel="stylesheet" href="{{.BaseURL}}/static/easymde.min.css">
|
|
</head>
|
|
|
|
<body class="focalboard-body">
|
|
<div id="focalboard-app">
|
|
</div>
|
|
|
|
<div id="focalboard-root-portal">
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|