설정변경

This commit is contained in:
2025-12-11 20:55:49 +09:00
parent 243e7f18dd
commit 616a2894e0
4 changed files with 1 additions and 52 deletions

View File

@@ -2,7 +2,7 @@
<configuration default="false" name="ragone-backend" type="SpringBootApplicationConfigurationType" factoryName="Spring Boot">
<option name="ALTERNATIVE_JRE_PATH" value="C:/Program Files/Java/jdk-21" />
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="true" />
<module name="ragone.main" />
<module name="ragone-backend.main" />
<option name="SPRING_BOOT_MAIN_CLASS" value="kr.co.ragone.RagoneApplication" />
<method v="2">
<option name="Make" enabled="true" />

View File

@@ -1,13 +0,0 @@
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RAGone - AI 문서 질의응답</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>

View File

@@ -1,23 +0,0 @@
{
"name": "ragone-frontend",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.4.21",
"vue-router": "^4.3.0",
"axios": "^1.6.8",
"marked": "^12.0.1",
"highlight.js": "^11.9.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"vite": "^5.2.8",
"sass": "^1.72.0"
}
}

View File

@@ -1,15 +0,0 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
port: 3000,
proxy: {
'/api': {
target: 'http://localhost:8080',
changeOrigin: true
}
}
}
})