Initial commit

This commit is contained in:
xiongxiaoyang
2022-05-14 08:02:38 +08:00
parent c719f1378b
commit 3f079db001
44 changed files with 7346 additions and 84 deletions

View File

@@ -1,4 +1,20 @@
const { defineConfig } = require('@vue/cli-service')
const webpack = require("webpack");
module.exports = defineConfig({
transpileDependencies: true
devServer:{
// 端口号的配置
port:1024
},
transpileDependencies: true,
lintOnSave: false,
configureWebpack: {
plugins: [
new webpack.ProvidePlugin({
$:"jquery",
jQuery:"jquery",
"windows.jQuery":"jquery"
})
]
}
})