1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import { defineConfig } from 'vite'
- import vue from '@vitejs/plugin-vue'
- import Components from 'unplugin-vue-components/vite'
- import { VantResolver } from 'unplugin-vue-components/resolvers'
- import postCssPxToRem from 'postcss-pxtorem'
- import Pages from 'vite-plugin-pages'
- import path from 'path'
- // https://vitejs.dev/config/
- export default defineConfig({
- plugins: [
- vue(),
- Pages({
- dirs: [
- { dir: 'src/page', baseRoute: '' },
- { dir: 'src/views', baseRoute: '' }
- ],
- exclude: ['**/component/*.vue'] // 排除组件
- }),
- Components({
- dts: true,
- resolvers: [VantResolver()]
- })
- ],
- resolve: {
- alias: {
- '@': path.resolve(path.resolve(), 'src')
- }
- },
- minify: 'terser',
- css: {
- postcss: {
- plugins: [
- postCssPxToRem({
- rootValue({ file }) {
- return file.indexOf('vant') !== -1 ? 37.5 : 75
- },
- propList: ['*'],
- unitPrecision: 5
- })
- ]
- }
- }
- })
|