coffee/vue.config.js

16 lines
332 B
JavaScript
Raw Normal View History

2024-12-03 15:23:59 +08:00
const { defineConfig } = require('@vue/cli-service')
2024-12-04 17:27:55 +08:00
const webpack = require('webpack');
2024-12-03 15:23:59 +08:00
module.exports = defineConfig({
2024-12-08 20:58:12 +08:00
publicPath:'./',
2024-12-04 17:27:55 +08:00
transpileDependencies: true,
lintOnSave : false,
configureWebpack: {
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
})
]
}
})