mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-07 08:26:15 +00:00
refactor(web): Update condition for development environment
This commit is contained in:
parent
3db0ce4501
commit
e10110bfdf
1 changed files with 2 additions and 2 deletions
|
|
@ -9,7 +9,7 @@ const baseNextConfig = {
|
|||
TELEGRAM_BOT_TOKEN: process.env.TELEGRAM_BOT_TOKEN,
|
||||
},
|
||||
eslint: {
|
||||
ignoreDuringBuilds: true
|
||||
ignoreDuringBuilds: true,
|
||||
},
|
||||
};
|
||||
|
||||
|
|
@ -22,7 +22,7 @@ const withPWA = pwa({
|
|||
|
||||
let selectedConfig = baseNextConfig;
|
||||
|
||||
if (process.env.NODE_ENV === "development") {
|
||||
if (process.env.NODE_ENV === "development" && !process.env.TURBOPACK) {
|
||||
selectedConfig = MillionLint.next({
|
||||
rsc: true,
|
||||
})(baseNextConfig);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue