diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml index d5983d67b..43fb8e33b 100644 --- a/.github/workflows/web.yml +++ b/.github/workflows/web.yml @@ -25,7 +25,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 - uses: pnpm/action-setup@v4 name: Install pnpm diff --git a/modules/web/vite.config.js b/modules/web/vite.config.js index 227560bda..a6e177250 100644 --- a/modules/web/vite.config.js +++ b/modules/web/vite.config.js @@ -65,4 +65,11 @@ export default ({ mode }) => }, }, }, + css: { + preprocessorOptions: { + scss: { + api: 'modern-compiler', // or 'modern' + }, + }, + }, });