1 Star 0 Fork 0

002/crm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.91 KB
一键复制 编辑 原始数据 按行查看 历史
002 提交于 2019-11-25 15:35 . feat:添加表格
const webpack = require('webpack');
const AntDesignThemePlugin = require("antd-theme-webpack-plugin");
const path = require("path");
const options = {
antDir: path.join(__dirname, "./node_modules/ant-design-vue"), //antd包位置
stylesDir: path.join(__dirname, "./static/css/theme"), //主题文件所在文件夹
varFile: path.join(__dirname, "./static/css/theme/variables.less"), // 自定义默认的主题色
mainLessFile: path.join(__dirname, "./static/css/theme/index.less"), // 项目中其他自定义的样式(如果不需要动态修改其他样式,该文件可以为空)
outputFilePath: path.join(__dirname, "./public/color.less"), //提取的less文件输出到什么地方
themeVariables: ["@primary-color"], //要改变的主题变量
indexFileName: "./public/index.html", // index.html所在位置
generateOnce: false // 是否只生成一次(if you don't want to generate color.less on each chnage in code to make build process fast in development mode, assign it true value. But if you have new changes in your styles, you need to re-run your build process npm start.)
};
module.exports = {
lintOnSave: false,
css: {
loaderOptions: {
less: {
modifyVars: {},
javascriptEnabled: true
}
}
},
// configureWebpack: {
// plugins: [
// new webpack.ProvidePlugin({
// $: "jquery",
//
// jQuery: "jquery",
//
// "windows.jQuery": "jquery"
// })
// ]
// },
configureWebpack: {
plugins: [
new AntDesignThemePlugin(options),
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"windows.jQuery": "jquery"
})
]
},
publicPath: process.env.NODE_ENV === 'production'
? './'
: '/'
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wq002/crm.git
git@gitee.com:wq002/crm.git
wq002
crm
crm
master

搜索帮助