collabdocchat 2.5.13 → 2.5.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/{index-1ylqJADA.js → index-DM1cxPAx.js} +105 -105
- package/dist/index.html +1 -1
- package/package.json +1 -1
- package/vite.config.js +1 -3
package/dist/index.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>CollabDocChat - 协作文档聊天平台</title>
|
|
7
7
|
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
|
|
8
8
|
<script src="https://cdn.quilljs.com/1.3.6/quill.js"></script>
|
|
9
|
-
<script type="module" crossorigin src="/assets/index-
|
|
9
|
+
<script type="module" crossorigin src="/assets/index-DM1cxPAx.js"></script>
|
|
10
10
|
<link rel="stylesheet" crossorigin href="/assets/index-D8ZqeoaM.css">
|
|
11
11
|
</head>
|
|
12
12
|
<body>
|
package/package.json
CHANGED
package/vite.config.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { defineConfig } from 'vite';
|
|
2
|
-
import { Buffer } from 'buffer';
|
|
3
2
|
|
|
4
3
|
export default defineConfig({
|
|
5
4
|
server: {
|
|
@@ -23,8 +22,7 @@ export default defineConfig({
|
|
|
23
22
|
define: {
|
|
24
23
|
// 修复 crypto 模块在构建时的问题
|
|
25
24
|
'process.env': {},
|
|
26
|
-
'global': 'globalThis'
|
|
27
|
-
'Buffer': ['buffer', 'Buffer']
|
|
25
|
+
'global': 'globalThis'
|
|
28
26
|
},
|
|
29
27
|
resolve: {
|
|
30
28
|
alias: {
|