# Audience_analysis **Repository Path**: labm/audience_analysis ## Basic Information - **Project Name**: Audience_analysis - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-12-08 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # audience_analysis ## Project setup ``` npm install ``` ### Compiles and hot-reloads for development ``` npm run serve ``` ### Compiles and minifies for production ``` npm run build ``` ### Lints and fixes files ``` npm run lint ``` ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/). ### `error code ELIFECYCLE`错误处理 - 可能的处理途径1: ``` npm cache clean --force rm -rf node_modules rm -rf package-lock.json npm install -g cnpm --registry=https://registry.npm.taobao.org cnpm install ``` - 可能的处理途径2: ``` 原配置存在问题,比如当前项目原来配置 plugins.push( new UglifyJsPlugin({ uglifyOptions: { compress: { warnings: false, drop_console: true, drop_debugger: false, pure_funcs: ["console.log"], //移除console }, }, sourceMap: false, parallel: true, }) ); 该配置引发编译失败也报 error code ELIFECYCLE。 ```