13 lines
279 B
JavaScript
13 lines
279 B
JavaScript
const { defineConfig } = require("@vue/cli-service");
|
|
const path = require('path')
|
|
function resolve(dir) {
|
|
return path.join(__dirname, dir)
|
|
}
|
|
module.exports = defineConfig({
|
|
transpileDependencies: true,
|
|
// devServer: {
|
|
// port: 'http://1.14.142.111:9090'
|
|
// }
|
|
|
|
});
|