mirror of
https://codeberg.org/alicia/web-check.git
synced 2026-03-14 22:55:47 +01:00
14 lines
288 B
JavaScript
14 lines
288 B
JavaScript
// vite.config.js
|
|
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
react({
|
|
jsxImportSource: '@emotion/react',
|
|
babel: {
|
|
plugins: ['babel-plugin-styled-components'],
|
|
},
|
|
}),
|
|
],
|
|
});
|