Skip to content

Commit 6e2c4b3

Browse files
committed
fix: remove redundant & unused themes
1 parent 45314a4 commit 6e2c4b3

File tree

5 files changed

+9
-110
lines changed

5 files changed

+9
-110
lines changed

src/assets/bubble.styl

Lines changed: 0 additions & 45 deletions
This file was deleted.

src/assets/bubble/toolbar.styl

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/assets/bubble/tooltip.styl

Lines changed: 0 additions & 49 deletions
This file was deleted.
File renamed without changes.

vite.config.ts

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,21 @@ export default defineConfig({
2525
plugins: [
2626
copy({
2727
targets: [{
28-
src: './node_modules/quill/dist/*.css',
28+
src: './node_modules/quill/dist/quill.core.css',
2929
dest: './dist',
3030
transform: (contents, filename) => {
3131
return csso.minify(contents.toString()).css
3232
}
3333
},
3434
{
35-
src: './src/themes/*.css',
35+
src: './node_modules/quill/dist/quill.bubble.css',
36+
dest: './dist',
37+
transform: (contents, filename) => {
38+
return csso.minify(contents.toString()).css
39+
}
40+
},
41+
{
42+
src: './src/themes/quill.snow.css',
3643
dest: './dist',
3744
transform: (contents, filename) => {
3845
return csso.minify(contents.toString()).css

0 commit comments

Comments
 (0)