1234567891011121314151617181920 |
- const {defineConfig} = require('@vue/cli-service')
- module.exports = defineConfig({
- transpileDependencies: true,
- lintOnSave: false,
- assetsDir:'static',
- publicPath:"./",
- devServer: {
- // host: process.env.HOST,
- // port: 8080,
- // open: true,
- // historyApiFallback: true,
- // allowedHosts: 'all',
- // hot: true,
- https: false,
- open: {
- target: ['http://localhost:8527'],
- },
- port: 8527
- }
- })
|