mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-19 12:11:51 +03:00
refactor : remove redundant if
This commit is contained in:
parent
34d30d9e43
commit
1ee5379022
@ -34,11 +34,6 @@ module.exports = function (webpackConfig) {
|
||||
|
||||
if (isProd) {
|
||||
config.module.rules.unshift(style9);
|
||||
} else {
|
||||
config.module.rules.push(style9);
|
||||
}
|
||||
|
||||
if (isProd) {
|
||||
config.entry = {
|
||||
main: [...config.entry.main, ...config.entry.polyfills],
|
||||
};
|
||||
@ -133,6 +128,7 @@ module.exports = function (webpackConfig) {
|
||||
});
|
||||
config.module.rules.splice(6);
|
||||
} else {
|
||||
config.module.rules.push(style9);
|
||||
config.output = {
|
||||
...config.output,
|
||||
publicPath: '/',
|
||||
|
@ -35,11 +35,6 @@ module.exports = function (webpackConfig) {
|
||||
|
||||
if (isProd) {
|
||||
config.module.rules.unshift(style9);
|
||||
} else {
|
||||
config.module.rules.push(style9);
|
||||
}
|
||||
|
||||
if (isProd) {
|
||||
config.entry = {
|
||||
main: [...config.entry.main, ...config.entry.polyfills],
|
||||
};
|
||||
@ -124,6 +119,7 @@ module.exports = function (webpackConfig) {
|
||||
});
|
||||
config.module.rules.splice(6);
|
||||
} else {
|
||||
config.module.rules.push(style9);
|
||||
config.output = {
|
||||
...config.output,
|
||||
publicPath: '/',
|
||||
|
Loading…
Reference in New Issue
Block a user