1 Star 2 Fork 1

NicholasLD/mqtt-manager

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 997 Bytes
一键复制 编辑 原始数据 按行查看 历史
NicholasLD 提交于 2022-10-16 16:54 . 第一版编写完毕
const { defineConfig } = require('@vue/cli-service')
const path = require("path");
const webpack = require("webpack");
module.exports = defineConfig({
transpileDependencies: true,
assetsDir: 'static',
productionSourceMap: false
})
function resolve(dir) {
return path.join(__dirname, dir)
}
module.exports = {
assetsDir: 'static',
devServer:{
open: true, //初次打包完成后,自动打开浏览器
host: '127.0.0.1' ,//实是打包所使用的主机地址
port:8080, //实时打包使用的端口号 (在http协议中,端口是80则可以省略不显示)
},
configureWebpack: {
// provide the app's title in webpack's name field, so that
// it can be accessed in index.html to inject the correct title.
resolve: {
alias: {
'@': resolve('src')
}
},
plugins: [
new webpack.ProvidePlugin({
process: 'process/browser',
Buffer: ['buffer', 'Buffer']
}),
]
},
productionSourceMap: false
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nicholasld/mqtt-manager.git
[email protected]:nicholasld/mqtt-manager.git
nicholasld
mqtt-manager
mqtt-manager
main

搜索帮助