feat: pivot to social media workflow app
This commit is contained in:
@@ -1,16 +1,12 @@
|
||||
import { fileURLToPath, URL } from 'node:url'
|
||||
import { defineConfig, loadEnv } from 'vite'
|
||||
import { defineConfig } from 'vite'
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
import fs from 'fs';
|
||||
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
|
||||
import { resolve } from 'path'
|
||||
import { visualizer } from 'rollup-plugin-visualizer'
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig(({ mode }) => {
|
||||
// Load environment variables based on the mode
|
||||
const env = loadEnv(mode, process.cwd(), '')
|
||||
return {
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
visualizer({
|
||||
filename: './dist/stats.html',
|
||||
@@ -24,10 +20,6 @@ export default defineConfig(({ mode }) => {
|
||||
})
|
||||
],
|
||||
server: {
|
||||
https: {
|
||||
key: fs.readFileSync('localhost-key.pem'),
|
||||
cert: fs.readFileSync('localhost.pem'),
|
||||
},
|
||||
port: 5173, // Ensure this matches your WebStorm debug URL
|
||||
open: true, // Automatically opens the browser
|
||||
host: '0.0.0.0',
|
||||
@@ -54,13 +46,7 @@ export default defineConfig(({ mode }) => {
|
||||
'@': fileURLToPath(new URL('./src', import.meta.url))
|
||||
}
|
||||
},
|
||||
define: {
|
||||
// Define a global constant __APP_ENV__ based on loaded environment variables
|
||||
VITE_API_URL: JSON.stringify(env.VITE_API_URL),
|
||||
VITE_STRIPE_API_KEY: JSON.stringify(env.VITE_STRIPE_API_KEY)
|
||||
},
|
||||
json: {
|
||||
stringify: false
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user