完成基本架构

This commit is contained in:
2023-02-15 13:07:17 +08:00
parent 91aa436fe2
commit 1d298727e9
18 changed files with 1490 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
/*
* @Author: Kane
* @Date: 2023-02-15 09:25:52
* @LastEditors: Kane
* @LastEditTime: 2023-02-15 10:40:43
* @FilePath: /task_schedule/vite.config.js
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
base: './',
})