first commit
This commit is contained in:
parent
b644961d2d
commit
d358777de1
|
@ -0,0 +1,21 @@
|
|||
.DS_Store
|
||||
node_modules
|
||||
/dist
|
||||
|
||||
# local env files
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# Log files
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Editor directories and files
|
||||
.idea
|
||||
.vscode
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw*
|
|
@ -0,0 +1,5 @@
|
|||
module.exports = {
|
||||
presets: [
|
||||
'@vue/app'
|
||||
]
|
||||
}
|
|
@ -0,0 +1,41 @@
|
|||
{
|
||||
"name": "my",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"author": "Hui <543245444@qq.com>",
|
||||
"scripts": {
|
||||
"dev": "vue-cli-service serve",
|
||||
"build": "vue-cli-service build",
|
||||
"analyze": "vue-cli-service build"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "0.17.1",
|
||||
"element-ui": "2.3.4",
|
||||
"js-cookie": "2.2.0",
|
||||
"normalize.css": "7.0.0",
|
||||
"nprogress": "0.2.0",
|
||||
"vue": "^2.5.17",
|
||||
"vue-router": "^3.0.1",
|
||||
"vuex": "^3.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vue/cli-plugin-babel": "^3.0.0",
|
||||
"@vue/cli-service": "^3.0.0",
|
||||
"node-sass": "^4.9.3",
|
||||
"qiniu-webpack-plugin": "^0.4.2",
|
||||
"sass-loader": "^7.1.0",
|
||||
"svg-sprite-loader": "3.5.2",
|
||||
"vue-template-compiler": "^2.5.17",
|
||||
"webpack-bundle-analyzer": "^2.13.1"
|
||||
},
|
||||
"postcss": {
|
||||
"plugins": {
|
||||
"autoprefixer": {}
|
||||
}
|
||||
},
|
||||
"browserslist": [
|
||||
"> 1%",
|
||||
"last 2 versions",
|
||||
"not ie <= 8"
|
||||
]
|
||||
}
|
|
@ -0,0 +1,104 @@
|
|||
// 七牛上传插件
|
||||
const QiniuPlugin = require('qiniu-webpack-plugin');
|
||||
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
||||
const path = require('path');
|
||||
|
||||
function resolve(dir) {
|
||||
return path.join(__dirname, dir)
|
||||
}
|
||||
module.exports = {
|
||||
// 项目部署的基础路径
|
||||
// 我们默认假设你的应用将会部署在域名的根部,
|
||||
// 比如 https://www.my-app.com/
|
||||
// 如果你的应用时部署在一个子路径下,那么你需要在这里
|
||||
// 指定子路径。比如,如果你的应用部署在
|
||||
// https://www.foobar.com/my-app/
|
||||
// 那么将这个值改为 `/my-app/`
|
||||
baseUrl: '/',
|
||||
|
||||
// 将构建好的文件输出到哪里
|
||||
outputDir: 'dist',
|
||||
|
||||
// 放置静态资源的地方 (js/css/img/font/...)
|
||||
// assetsDir: '',
|
||||
|
||||
// 是否在保存的时候使用 `eslint-loader` 进行检查。
|
||||
// 有效的值:`ture` | `false` | `"error"`
|
||||
// 当设置为 `"error"` 时,检查出的错误会触发编译失败。
|
||||
lintOnSave: true,
|
||||
|
||||
// 使用带有浏览器内编译器的完整构建版本
|
||||
// 查阅 https://cn.vuejs.org/v2/guide/installation.html#运行时-编译器-vs-只包含运行时
|
||||
// compiler: false,
|
||||
|
||||
// babel-loader 默认会跳过 node_modules 依赖。
|
||||
// 通过这个选项可以显式转译一个依赖。
|
||||
transpileDependencies: [/* string or regex */],
|
||||
|
||||
// 是否为生产环境构建生成 source map?
|
||||
productionSourceMap: false,
|
||||
|
||||
// 调整内部的 webpack 配置。
|
||||
// 查阅 https://github.com/vuejs/vue-docs-zh-cn/blob/master/vue-cli/webpack.md
|
||||
chainWebpack: () => { },
|
||||
configureWebpack: () => { },
|
||||
|
||||
// CSS 相关选项
|
||||
css: {
|
||||
// 将组件内的 CSS 提取到一个单独的 CSS 文件 (只用在生产环境中)
|
||||
// 也可以是一个传递给 `extract-text-webpack-plugin` 的选项对象
|
||||
extract: true,
|
||||
|
||||
// 是否开启 CSS source map?
|
||||
sourceMap: false,
|
||||
|
||||
// 为预处理器的 loader 传递自定义选项。比如传递给
|
||||
// sass-loader 时,使用 `{ sass: { ... } }`。
|
||||
loaderOptions: {},
|
||||
|
||||
// 为所有的 CSS 及其预处理文件开启 CSS Modules。
|
||||
// 这个选项不会影响 `*.vue` 文件。
|
||||
modules: false
|
||||
},
|
||||
|
||||
// 在生产环境下为 Babel 和 TypeScript 使用 `thread-loader`
|
||||
// 在多核机器下会默认开启。
|
||||
parallel: require('os').cpus().length > 1,
|
||||
|
||||
// PWA 插件的选项。
|
||||
// 查阅 https://github.com/vuejs/vue-docs-zh-cn/blob/master/vue-cli-plugin-pwa/README.md
|
||||
pwa: {},
|
||||
|
||||
// 配置 webpack-dev-server 行为。
|
||||
devServer: {
|
||||
open: process.platform === 'darwin',
|
||||
host: 'localhost',
|
||||
port: 8888,
|
||||
https: false,
|
||||
hotOnly: false,
|
||||
open:true,
|
||||
// 查阅 https://github.com/vuejs/vue-docs-zh-cn/blob/master/vue-cli/cli-service.md#配置代理
|
||||
proxy: 'http://193.112.153.155:3001', // string | Object
|
||||
before: app => { }
|
||||
},
|
||||
|
||||
configureWebpack: config => {
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
// 为生产环境修改配置...
|
||||
if(process.env.npm_lifecycle_event === 'analyze'){
|
||||
config.plugins.push(
|
||||
new BundleAnalyzerPlugin()
|
||||
);
|
||||
}
|
||||
|
||||
} else {
|
||||
// 为开发环境修改配置...
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
// 第三方插件的选项
|
||||
pluginOptions: {
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue