memowake-front/lib/database/empty-sqlite.js
Junhui Chen cff3516aa2
All checks were successful
Dev Deploy / Explore-Gitea-Actions (push) Successful in 27s
fix: db for web
2025-07-21 17:20:34 +08:00

10 lines
277 B
JavaScript

// 空的 SQLite 模块,用于 Web 环境
console.warn('SQLite is not available in web environment');
// 导出空的对象,避免导入错误
module.exports = {
openDatabaseSync: () => {
throw new Error('SQLite is not available in web environment');
}
};