fix(template-vite): incorrectly bundling browser entrypoints (#3278)

This commit is contained in:
Marks Polakovs 2023-08-08 21:23:49 +01:00 коммит произвёл GitHub
Родитель c1f725103c
Коммит fd1ed4b250
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -5,6 +5,7 @@ export default defineConfig({
resolve: {
// Some libs that can run in both Web and Node.js, such as `axios`, we need to tell Vite to build them in Node.js.
browserField: false,
conditions: ['node'],
mainFields: ['module', 'jsnext:main', 'jsnext'],
},
});