vite.config.ts 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. import { defineConfig } from "vite";
  2. import vue from "@vitejs/plugin-vue";
  3. import vueJsx from "@vitejs/plugin-vue-jsx";
  4. import Components from "unplugin-vue-components/vite";
  5. import { VantResolver } from "unplugin-vue-components/resolvers";
  6. import postcssPxtorem from "postcss-pxtorem";
  7. import { createStyleImportPlugin } from "vite-plugin-style-import";
  8. import legacy from "@vitejs/plugin-legacy";
  9. import path from "path";
  10. const proxyUrl = "https://dev.colexiu.com/";
  11. const resolve = (dir: string) => path.join(__dirname, dir)
  12. // https://vitejs.dev/config/
  13. export default defineConfig({
  14. base: './',
  15. plugins: [
  16. vue(),
  17. vueJsx(),
  18. legacy({
  19. targets: ["> 0.25%, not dead"],
  20. ignoreBrowserslistConfig: true,
  21. }),
  22. Components({
  23. resolvers: [VantResolver()],
  24. }),
  25. createStyleImportPlugin({
  26. libs: [
  27. {
  28. libraryName: "vant",
  29. esModule: true,
  30. resolveStyle: (name) => `../es/${name}/style/index`,
  31. },
  32. ],
  33. }),
  34. ],
  35. css: {
  36. postcss: {
  37. plugins: [
  38. postcssPxtorem({
  39. rootValue: 37.5, // 1rem的大小
  40. propList: ["*"], // 需要转换的属性,这里选择全部都进行转换
  41. }),
  42. ],
  43. },
  44. },
  45. resolve: {
  46. alias: {
  47. "@": resolve('./src'),
  48. },
  49. },
  50. server: {
  51. host: "0.0.0.0",
  52. port: 5050,
  53. // open: true,
  54. proxy: {
  55. "/api-website": {
  56. target: proxyUrl,
  57. changeOrigin: true,
  58. },
  59. },
  60. },
  61. build: {
  62. terserOptions: {
  63. //打包后移除console和注释
  64. compress: {
  65. drop_console: true,
  66. drop_debugger: true,
  67. },
  68. },
  69. },
  70. });