We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 846e8fb commit 3118878Copy full SHA for 3118878
.browserslistrc
@@ -1,3 +1,3 @@
1
> 1%
2
-last 2 versions
3
-not ie <= 8
+last 3 versions
+not dead
vite.config.js
@@ -2,6 +2,7 @@ import { defineConfig } from 'vite'
import Vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
4
import Delete from 'rollup-plugin-delete'
5
+import autoprefixer from 'autoprefixer'
6
7
const build = process.env.BUNDLE ? {
8
lib: {
@@ -48,6 +49,9 @@ export default defineConfig({
48
49
scss: {
50
additionalData: '@import "@/scss/_variables.scss";'
51
}
52
+ },
53
+ postcss: {
54
+ plugins: [autoprefixer]
55
56
},
57
build
0 commit comments