12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import { fileURLToPath, URL } from 'node:url'
- import { defineConfig } from 'vite'
- import vue from '@vitejs/plugin-vue'
- import postcsspxtoviewport from 'postcss-px-to-viewport'
- export default defineConfig({
- plugins: [
- vue()
- ],
- resolve: {
- alias: {
- '@': fileURLToPath(new URL('./src', import.meta.url))
- }
- },
- css: {
- preprocessorOptions: {
- scss: {
- api: "modern-compiler"
- }
- },
- postcss: {
- plugins: [
- postcsspxtoviewport({
- unitToConvert: "px",
- viewportWidth: 1080,
- unitPrecision: 6,
- propList: ["*"],
- viewportUnit: "vh",
- fontViewportUnit: "vh",
- selectorBlackList: [],
- minPixelValue: 1,
- mediaQuery: true,
- replace: true,
- exclude: [/node_modules/],
-
- landscape: false
- }),
- ]
- }
- },
- publicPath: './'
- })
|