7 Star 39 Fork 15

zhangb/cesium-draw

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
zhangb 提交于 2023-05-23 17:07 . 添加主题
const { defineConfig } = require("@vue/cli-service");
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const theme = "default";
module.exports = defineConfig({
outputDir: "dist",
transpileDependencies: true,
lintOnSave: true,
assetsDir: 'theme',
configureWebpack: {
plugins: process.env.NODE_ENV === 'development' ? [] : [
new MiniCssExtractPlugin({
filename: `theme/${theme}.css`,
// chunkFilename: `css/[name].${conf.version}.css`
})
]
},
css: {
loaderOptions: {
sass: {
additionalData: `
@import "@/assets/css/theme/${theme}.scss";
`,
},
},
// 启用 CSS modules
// modules: false,
// 是否使用css分离插件
extract: true,
// 开启 CSS source maps,一般不建议开启
sourceMap: false,
// css预设器配置项
// 是否使用css分离插件 ExtractTextPlugin
// extract: {
// //一种方式,打包后的css 会带版本号,不改变文件名的。
// filename: 'theme/[name].css'
// }
},
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/xtfge0915/cesium-draw.git
git@gitee.com:xtfge0915/cesium-draw.git
xtfge0915
cesium-draw
cesium-draw
master

搜索帮助