mirror of
https://gitee.com/novel_dev_team/novel-front-web
synced 2026-07-20 17:54:10 +08:00
Initial commit
This commit is contained in:
@@ -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"
|
||||
})
|
||||
]
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user