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