16 lines
332 B
JavaScript
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"
|
|
})
|
|
]
|
|
}
|
|
}) |