123456789101112131415161718192021 |
- module.exports = {
- presets: ["@vue/app"],
- plugins: [
- [
- "import",
- {
- libraryName: "iview",
- libraryDirectory: "src/components"
- }
- ]
- ],
- env: {
- //Fixme: not valid
- staging: {
- plugins: ["transform-remove-console"]
- },
- production: {
- plugins: ["transform-remove-console"]
- }
- }
- };
|