-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add back webpack config for building a standalone plain JS module
- Loading branch information
1 parent
0b9014a
commit b0148cb
Showing
9 changed files
with
2,065 additions
and
536 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,17 @@ | ||
<head> | ||
<head></head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<link rel="stylesheet" href="./quill.snow.css" /> | ||
<link rel="stylesheet" href="quill.snow.css"> | ||
<style> | ||
.ql-toolbar:after { | ||
clear: none !important; | ||
} | ||
.ql-toolbar:after { | ||
clear: none !important; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script | ||
src="https://unpkg.com/react@18/umd/react.development.js" | ||
crossorigin | ||
></script> | ||
<script | ||
src="https://unpkg.com/react-dom@18/umd/react-dom.development.js" | ||
crossorigin | ||
></script> | ||
<script src="https://unpkg.com/react@18/umd/react.development.js" crossorigin></script> | ||
<script src="https://unpkg.com/react-dom@18/umd/react-dom.development.js" crossorigin></script> | ||
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script> | ||
<script src="./react-quill.js"></script> | ||
<script type="text/babel" src="index.js"></script> | ||
<script defer type="text/babel" src="index.js"></script> | ||
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../dist/quill.snow.css |
Oops, something went wrong.