Skip to content

Commit

Permalink
Fix ESM import for Ramda in Vite config.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaehring committed Aug 29, 2023
1 parent 12cb63b commit cffcb9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/field-kit/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { defineConfig } from 'vite';
import createVuePlugin from '@vitejs/plugin-vue';
import { viteCommonjs } from '@originjs/vite-plugin-commonjs';
import { VitePWA } from 'vite-plugin-pwa';
import { reduce } from 'ramda';
import { reduce } from '../../node_modules/ramda/es';

const proxyConfig = {
target: 'http://localhost:80',
Expand Down

0 comments on commit cffcb9d

Please sign in to comment.