You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
596 B
25 lines
596 B
3 years ago
|
import legacy from "@vitejs/plugin-legacy";
|
||
|
import vue from "@vitejs/plugin-vue";
|
||
|
import { defineConfig } from "vite";
|
||
3 years ago
|
|
||
3 years ago
|
const postCssScss = require("postcss-scss");
|
||
|
const postcssRTLCSS = require("postcss-rtlcss");
|
||
3 years ago
|
|
||
3 years ago
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
3 years ago
|
plugins: [
|
||
|
vue(),
|
||
|
legacy({
|
||
|
targets: ["ie > 11"],
|
||
|
additionalLegacyPolyfills: ["regenerator-runtime/runtime"]
|
||
|
})
|
||
3 years ago
|
],
|
||
|
css: {
|
||
|
postcss: {
|
||
|
"parser": postCssScss,
|
||
|
"map": false,
|
||
|
"plugins": [postcssRTLCSS]
|
||
|
}
|
||
3 years ago
|
},
|
||
|
});
|