diff --git a/.idea/misc.xml b/.idea/misc.xml
index c082a1e..d803985 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -8,6 +8,55 @@
+
+
+
+
+
+
+
diff --git a/exam-vue/src/layout/index.vue b/exam-vue/src/layout/index.vue
index 5b50991..735f11e 100644
--- a/exam-vue/src/layout/index.vue
+++ b/exam-vue/src/layout/index.vue
@@ -63,8 +63,8 @@ export default {
diff --git a/exam-vue/vite.config.js b/exam-vue/vite.config.js
deleted file mode 100644
index ee7de92..0000000
--- a/exam-vue/vite.config.js
+++ /dev/null
@@ -1,59 +0,0 @@
-import { defineConfig, loadEnv } from 'vite'
-import vue from '@vitejs/plugin-vue'
-import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
-import path from 'path'
-
-const resolve = (dir) => path.resolve(__dirname, dir)
-
-export default defineConfig(({ mode }) => {
- const env = loadEnv(mode, process.cwd())
-
- return {
- plugins: [
- vue(),
- createSvgIconsPlugin({
- iconDirs: [resolve('src/icons/svg')],
- symbolId: 'icon-[name]'
- })
- ],
- resolve: {
- alias: {
- '@': resolve('src')
- }
- },
- define: {
- 'process.env': {}
- },
- server: {
- port: 9527,
- open: true
- },
- build: {
- outDir: 'dist',
- assetsDir: 'static',
- sourcemap: false,
- rollupOptions: {
- output: {
- chunkFileNames: 'static/js/[name]-[hash].js',
- entryFileNames: 'static/js/[name]-[hash].js',
- assetFileNames: 'static/[ext]/[name]-[hash].[ext]',
- manualChunks(id) {
- if (id.includes('node_modules')) {
- if (id.includes('element-plus')) {
- return 'chunk-elementPlus'
- }
- return 'chunk-libs'
- }
- }
- }
- }
- },
- css: {
- preprocessorOptions: {
- scss: {
- charset: false
- }
- }
- }
- }
-})