6 lines
162 B
TypeScript
6 lines
162 B
TypeScript
import { defineConfig } from 'vite';
|
|
export default defineConfig({
|
|
define: {
|
|
__APP_VERSION__: JSON.stringify(process.env.npm_package_version)
|
|
}
|
|
}) |