We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f1d2de commit c1dcf15Copy full SHA for c1dcf15
src/App.tsx
@@ -1,5 +1,3 @@
1
-import Home from "@pages/home/home";
2
-
3
function App() {
4
return (
5
<div></div>
vite.config.ts
@@ -1,14 +1,14 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";
import { vanillaExtractPlugin } from "@vanilla-extract/vite-plugin";
-import react from "@vitejs/plugin-react-swc";
import svgr from "vite-plugin-svgr";
6
import path from "path";
7
8
// https://vite.dev/config/
9
export default defineConfig({
10
plugins: [
11
react(),
+ vanillaExtractPlugin(),
12
svgr({
13
svgrOptions: {
14
ref: true, // JavaScript로 SVG 직접 접근 가능(useRef 등)
0 commit comments