feat: fix ellipsis bug (#3644)

This commit is contained in:
Mr.Dear 2024-03-05 13:05:26 +08:00 committed by GitHub
parent 7ec9344be8
commit 9372f1d159
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -121,6 +121,7 @@
pointer-events: none; pointer-events: none;
&::before { &::before {
content: ''; //
position: absolute; position: absolute;
bottom: 0; bottom: 0;
inset-inline-start: 0; inset-inline-start: 0;

View File

@ -31,6 +31,7 @@ export default defineApplicationConfig({
rewrite: (path) => path.replace(new RegExp(`^/upload`), ''), rewrite: (path) => path.replace(new RegExp(`^/upload`), ''),
}, },
}, },
open: true, // 项目启动后,自动打开
warmup: { warmup: {
clientFiles: ['./index.html', './src/{views,components}/*'], clientFiles: ['./index.html', './src/{views,components}/*'],
}, },