如何用webpack打包vue
发布网友
发布时间:2022-05-02 00:12
我来回答
共1个回答
热心网友
时间:2022-05-14 21:17
用webpack打包vue
根据需要设置项目的信息, 也可以一路回车,使用默认信息,默认项目名称为文件夹名(项目名称不要设置成某个模块名,否则将来你引用摸个模块的时候会报错)
name: (new)
version: (1.0.0)
description:
entry point: (index.js)
test command:
git repository:
keywords: new
author: fz
license: (ISC)
{
"name": "gt",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"new"
],
"author": "fz",
"license": "ISC"
}
Is this ok? (yes)
之后文件夹下会生成一个package.json,记录了项目的详细信息,包括了各种依赖和插件。