This commit is contained in:
2025-07-02 21:56:37 +09:00
commit 29adf2c274
736 changed files with 89300 additions and 0 deletions

36
vite.config.js Normal file
View File

@@ -0,0 +1,36 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import commonjs from 'vite-plugin-commonjs'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue(),commonjs()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
},
extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.scss', '.css', '.vue'],
},
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler',
},
},
},
define: {
global: 'window',
},
server: {
proxy: {
'/api': {
target: 'http://talk.kospo.co.kr:8040',
changeOrigin: true,
secure:false,
ws:false
}
}
}
})