Create webpack empty configuration

pull/1/head
Nikita Tokarchuk 2 years ago
parent 25a0d8b5da
commit 263b911363
Signed by: mainnika
GPG Key ID: A595FB7E3E56911C
  1. 5
      package.json
  2. 5
      webpack.config.js

@ -5,9 +5,14 @@
"private": true, "private": true,
"author": "", "author": "",
"scripts": { "scripts": {
"build": "webpack",
"watch": "webpack watch",
}, },
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"webpack": "^5.63.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
}, },
"dependencies": { "dependencies": {
} }

@ -0,0 +1,5 @@
module.exports = {
module: {
},
};
Loading…
Cancel
Save