- Created webpack.config.js - Added some basic configuration - Modified package.json, so that webpack uses our config file
18 lines
312 B
JSON
18 lines
312 B
JSON
{
|
|
"name": "code",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "webpack --config webpack.config.js"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"webpack": "^4.29.6",
|
|
"webpack-cli": "^3.2.3"
|
|
}
|
|
}
|