coffee/vue.config.js
2024-12-08 20:58:12 +08:00

16 lines
332 B
JavaScript

const { defineConfig } = require('@vue/cli-service')
const webpack = require('webpack');
module.exports = defineConfig({
publicPath:'./',
transpileDependencies: true,
lintOnSave : false,
configureWebpack: {
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
})
]
}
})