All checks were successful
Dev Deploy / Explore-Gitea-Actions (push) Successful in 27s
10 lines
277 B
JavaScript
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');
|
|
}
|
|
};
|