Skip to content

Commit

Permalink
fix(DataMapper): Add missing vite.config.js file to avoid sass deprec…
Browse files Browse the repository at this point in the history
…ation notice
  • Loading branch information
lordrip committed Jan 15, 2025
1 parent 6dca9c9 commit 9c78c78
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions packages/ui/src/components/DataMapper/debug/vite.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// @ts-check
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';

// https://vitejs.dev/config/

export default defineConfig(async () => {
return {
plugins: [react()],
base: './',
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler',
},
},
},
};
});

0 comments on commit 9c78c78

Please sign in to comment.