fix(create-nocobase-app): storage path

This commit is contained in:
chenos 2022-05-23 15:01:56 +08:00
parent c90e5aee4c
commit a0245caeb8
3 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# Release Notes
## 2022/05/22 ~ v0.7.0-alpha.59
## 2022/05/23 ~ v0.7.0-alpha.59
- fix(client): improve translation
- fix(cli): nocobase test command --db-clean option is invalid

View File

@ -80,7 +80,7 @@ class AppGenerator extends Generator {
if (!allDbDialect) {
dependencies.push(`"sqlite3": "^5.0.8"`);
}
envs.push(`DB_STORAGE=${env.DB_STORAGE || 'storages/db/nocobase.sqlite'}`);
envs.push(`DB_STORAGE=${env.DB_STORAGE || 'storage/db/nocobase.sqlite'}`);
break;
case 'mysql':
if (!allDbDialect) {

View File

@ -219,6 +219,9 @@
// images
img {
max-width: 1000px;
@media @mobile {
width: 100%;
}
}
}