1 Star 0 Fork 7

fearwall/openlayers 常用功能集合

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.98 KB
一键复制 编辑 原始数据 按行查看 历史
xuemei 提交于 2021-06-25 14:12 . 文件新增
const webpack = require("webpack");
const path = require("path");
module.exports = {
lintOnSave: false,
publicPath: "./",
outputDir: "dspw2",
productionSourceMap: false,
runtimeCompiler: true,
css: {
loaderOptions: {
sass: {
data: '@import "@/common/theme/_theme.scss";'
}
}
},
// chainWebpack: config => {
// config.plugins.delete("prefetch");
// if (process.env.NODE_ENV === "production") {
// config.plugin("compression").use(CompressionWebpackPlugin, [
// {
// test: /\.js$|\.css$/,
// algorithm: "gzip",
// threshold: 0
// }
// ]);
// }
// },
devServer: {
port: 9999, // 端口号
host: "0.0.0.0",
https: false, // https:{type:Boolean}
open: true, //配置自动启动浏览器
proxy: {
"/share": {
target: "http://192.168.33.163:8888",
changeOrigin: true,
pathRewrite: {
"^/share": ""
}
},
}
},
configureWebpack: {
resolve: {
alias: {
"@": path.resolve(__dirname, "src")
}
},
module: {
rules: [
{
test: /\.txt|\.html/,
use: "raw-loader"
},
{
test: /.md$/,
use: 'text-loader',
}
]
},
plugins: [
new webpack.ProvidePlugin({
Axios: "axios",
// Utils: path.resolve(__dirname, "src/common/utils")
// CONSTANT: path.resolve(__dirname, "src/config/constant.js")
}),
/* new UglifyJSPlugin({
exclude: ['/node_modules/']
})*/
]
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/fearwall/openlayers-example.git
git@gitee.com:fearwall/openlayers-example.git
fearwall
openlayers-example
openlayers 常用功能集合
master

搜索帮助