mirror of
https://github.com/postyizhan/NitWikit.git
synced 2025-01-30 15:50:31 +08:00
12 lines
230 B
JavaScript
12 lines
230 B
JavaScript
|
|
const isDev = process.env.NODE_ENV === 'development';
|
|
module.exports = {
|
|
experiments: {
|
|
futureDefaults: true,
|
|
asyncWebAssembly: true,
|
|
css: true,
|
|
lazyCompilation: isDev,
|
|
incremental: isDev,
|
|
},
|
|
};
|