11 lines
172 B
JavaScript
11 lines
172 B
JavaScript
|
import legacy from "@vitejs/plugin-legacy";
|
||
|
|
||
|
export default {
|
||
|
build: {
|
||
|
minify: "terser",
|
||
|
terserOptions: { ecma: 5 },
|
||
|
sourcemap: "true",
|
||
|
},
|
||
|
plugins: [legacy()],
|
||
|
};
|