create-packer 1.43.0 → 1.43.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/template/web-app/react-rsbuild/.env +1 -0
- package/template/web-app/react-rsbuild/.env.development +1 -0
- package/template/web-app/react-rsbuild/env.d.ts +1 -1
- package/template/web-app/vue-rsbuild/.env +2 -1
- package/template/web-app/vue-rsbuild/.env.development +1 -0
- package/template/web-app/vue-rsbuild/env.d.ts +1 -0
package/package.json
CHANGED
|
@@ -7,9 +7,9 @@ declare module 'styled-components' {
|
|
|
7
7
|
}
|
|
8
8
|
declare global {
|
|
9
9
|
interface ImportMetaEnv {
|
|
10
|
-
// import.meta.env.PUBLIC_FOO
|
|
11
10
|
readonly PUBLIC_BASE_URL: string
|
|
12
11
|
readonly PUBLIC_API_HOST: string
|
|
12
|
+
readonly PUBLIC_ENV_MODE: 'production' | 'development'
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
interface ImportMeta {
|