Skip to content

Commit

Permalink
Feature/#9 WebView vanilla extract 초기 세팅 (#35)
Browse files Browse the repository at this point in the history
* feat(apps/web): @vanilla-extract/next-plugin 설치

* feat(apps/web): next config에 vanilla extract 관련 설정 추가
  • Loading branch information
ghdtjgus76 authored Dec 18, 2024
1 parent 4047616 commit f89b7e2
Show file tree
Hide file tree
Showing 3 changed files with 1,332 additions and 53 deletions.
5 changes: 4 additions & 1 deletion apps/web/next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { createVanillaExtractPlugin } from "@vanilla-extract/next-plugin";

/** @type {import('next').NextConfig} */
const nextConfig = {};
const withVanillaExtract = createVanillaExtractPlugin();

export default nextConfig;
module.exports = withVanillaExtract(nextConfig);
3 changes: 2 additions & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/next": "^9.0.0"
"@types/next": "^9.0.0",
"@vanilla-extract/next-plugin": "^2.4.7"
}
}
Loading

0 comments on commit f89b7e2

Please sign in to comment.