mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
Updated coincident to use a local channel (#2195)
* Updated coincident to use a local channel
This commit is contained in:
committed by
GitHub
parent
2642be863b
commit
8de97a7e7b
@@ -13,7 +13,12 @@ for (const file of readdirSync(join(__dirname, "..", "src", "plugins"))) {
|
||||
plugins.push(
|
||||
// this comment is needed to avoid bundlers eagerly embedding lazy
|
||||
// dependencies, causing all sort of issues once in production
|
||||
` ${key}: () => import(/* webpackIgnore: true */ ${value}),`,
|
||||
// ⚠️ THIS HAS TO BE LIKE THIS or prettier changes it every single time
|
||||
` ${key}: () =>
|
||||
import(
|
||||
/* webpackIgnore: true */
|
||||
${value}
|
||||
),`,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user