aboutsummaryrefslogtreecommitdiff
path: root/vnext/webpack.config.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2022-11-06 04:30:51 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:58 +0300
commit8c2b2cee1f8701479bafbd69069847e50e8f0d67 (patch)
treeda01fcbc17b705a74cb4b37b1b06d4b30dbaab29 /vnext/webpack.config.js
parent7b14a8f3faf7672f0aefbf93d5c37f62a169b535 (diff)
webpack -> postcss+esbuild
Diffstat (limited to 'vnext/webpack.config.js')
-rw-r--r--vnext/webpack.config.js13
1 files changed, 1 insertions, 12 deletions
diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js
index 8748ba93..2415ac79 100644
--- a/vnext/webpack.config.js
+++ b/vnext/webpack.config.js
@@ -12,19 +12,8 @@ module.exports = (env, argv) => {
mode: dev ? 'development' : 'production',
entry: {
'Juick': [
- 'core-js/modules/es.array.map',
- 'core-js/modules/es.map',
- 'core-js/modules/es.object.create',
- 'core-js/modules/es.object.define-property',
- 'core-js/modules/es.object.set-prototype-of',
- 'core-js/modules/es.promise',
- 'core-js/modules/es.set',
- 'core-js/modules/es.symbol',
- 'core-js/modules/web.dom-collections.iterator',
- 'url-polyfill',
__dirname + '/src/index.js',
- __dirname + '/src/index.css',
- require.resolve('evil-icons/assets/evil-icons.css')
+ __dirname + '/src/index.css'
]
},
output: {