mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
feat(editor): Drop support for legacy browsers that do not have native ESM support (#6239)
This commit is contained in:
committed by
GitHub
parent
2a20a19dc0
commit
9182d1558a
@@ -1,5 +1,4 @@
|
||||
import vue from '@vitejs/plugin-vue2';
|
||||
import legacy from '@vitejs/plugin-legacy';
|
||||
import path, { resolve } from 'path';
|
||||
import { defineConfig, mergeConfig } from 'vite';
|
||||
import { defineConfig as defineVitestConfig } from 'vitest/config';
|
||||
@@ -72,12 +71,7 @@ const alias = [
|
||||
},
|
||||
];
|
||||
|
||||
const plugins = [
|
||||
vue(),
|
||||
legacy({
|
||||
targets: ['>1%', 'last 3 versions', 'not dead'],
|
||||
}),
|
||||
];
|
||||
const plugins = [vue()];
|
||||
|
||||
const { SENTRY_AUTH_TOKEN: authToken, RELEASE: release } = process.env;
|
||||
if (release && authToken) {
|
||||
|
||||
Reference in New Issue
Block a user