Webpack
ΠΠ°ΡΡΡΠΎΠΉΠΊΠ° Webpack Π΄Π»Ρ ΡΠ°Π±ΠΎΡΡ ΡΠΎΠ»ΡΠΊΠΎ Ρ js
npm install --save-dev webpack webpack-cli webpack-node-externalsconst path = require('path'); const nodeExternals = require('webpack-node-externals'); module.exports = { entry: './src/index.js', // ΠΠ°Ρ ΠΎΡΠ½ΠΎΠ²Π½ΠΎΠΉ ΡΠ°ΠΉΠ» ΠΏΡΠΎΠ΅ΠΊΡΠ° target: 'node', output: { path: path.resolve(__dirname, 'dist'), filename: 'bundle.js', }, externals: [nodeExternals()], // ΠΡΠΊΠ»ΡΡΠ°Π΅Ρ node_modules ΠΈΠ· Π±Π°Π½Π΄Π»Π° mode: 'production', };"scripts": { "build": "webpack --config webpack.config.js" }npm run build
ΠΠ°ΡΡΡΠΎΠΉΠΊΠ° Webpack Π΄Π»Ρ ΡΠ°Π±ΠΎΡΡ Ρ html
Last updated