当前位置:   article > 正文

vite+vue3打包之后双击运行白屏问题

vite+vue3打包之后双击运行白屏问题

vite+vue3打包之后双击运行白屏问题

直接上代理


两个插件
  "@vitejs/plugin-legacy": "^5.3.1",
  "vite-plugin-compression": "^0.5.1",

vite.config.ts配置

import viteCompression from "vite-plugin-compression";
import legacy from "@vitejs/plugin-legacy";

  plugins: [
    vue(),
    legacy({
      targets: ["defaults", "not IE 11"],
    }),
    viteCompression({
      verbose: false, // 不显示gzip压缩信息
      threshold: 1024 * 10, // 10kb
    }),
  ],



  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

完整配置


import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import { resolve } from "path";
import postcssPxToViewport from "postcss-px-to-viewport";
import viteCompression from "vite-plugin-compression";
import legacy from "@vitejs/plugin-legacy";

// https://vitejs.dev/config/
export default defineConfig({
  plugins: [
    vue(),
    legacy({
      targets: ["defaults", "not IE 11"],
    }),
    viteCompression({
      verbose: false, // 不显示gzip压缩信息
      threshold: 1024 * 10, // 10kb
    }),
  ],

  resolve: {
    alias: [
      {
        find: "@",
        replacement: resolve(__dirname, "src"),
      },
    ],
    extensions: [".js", ".ts", ".jsx", ".tsx", ".json", ".vue"],
  },
  base: "./",
  build: {
    outDir: "dist",
    assetsDir: "assets", //指定静态资源存放路径
    sourcemap: false, //是否构建source map 文件
    // terserOptions: {
    //   // 生产环境移除console
    //   compress: {
    //     drop_console: true,
    //     drop_debugger: true,
    //   },
    // },
  },
  server: {
    port: 5160,
    proxy: {
      "/api": {
        target: "http://192.168.1111.11111:5173",
        changeOrigin: true, //是否跨域
        rewrite: (path) => path.replace(/^\/api/, ""),
      },
    },
  },

  css: {
    // postcss: {
    //   plugins: [
    //     postcssPxToViewport({
    //       unitToConvert: "px", // 要转化的单位
    //       viewportWidth: 1920, // UI设计稿的宽度
    //       unitPrecision: 6, // 转换后的精度,即小数点位数
    //       propList: ["*"], // 指定转换的css属性的单位,*代表全部css属性的单位都进行转换
    //       viewportUnit: "vw", // 指定需要转换成的视窗单位,默认vw
    //       fontViewportUnit: "vw", // 指定字体需要转换成的视窗单位,默认vw
    //       // minPixelValue: 1, // 默认值1,小于或等于1px则不进行转换
    //       mediaQuery: true, // 是否在媒体查询的css代码中也进行转换,默认false
    //       replace: true, // 是否转换后直接更换属性值
    //       selectorBlackList: [".ignore"], // 指定不转换为视窗单位的类,可以自定义,可以无限添加,建议定义一至两个通用的类名
    //       exclude: [/node_modules/,/src1/], // 设置忽略文件,用正则做目录名匹配
    //       landscape: false, // 是否处理横屏情况
    //       // include:['src/views/home/home.vue']
    //     }),
    //   ],
    // },
  },
});

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/258858?site
推荐阅读
相关标签
  

闽ICP备14008679号