Open Malien opened 5 months ago
Given a simple vite starter project of:
import { css } from "@linaria/core"; console.log(import.meta.env.MODE); document.body.className = css` content: ${import.meta.env.MODE} `;
A build-time evaluation of the module yields undefined from import.meta.env.*. This breaks certain flows
undefined
import.meta.env.*
Is there any progress on this?
Given a simple vite starter project of:
A build-time evaluation of the module yields
undefined
fromimport.meta.env.*
. This breaks certain flows