初版功能完成
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import { defineConfig } from 'vite'
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
import { fileURLToPath, URL } from 'node:url'
|
||||
|
||||
export default defineConfig({
|
||||
root: fileURLToPath(new URL('.', import.meta.url)),
|
||||
plugins: [vue()],
|
||||
resolve: { alias: { vue: 'vue/dist/vue.esm-bundler.js' } },
|
||||
build: { outDir: 'dist', emptyOutDir: true, sourcemap: false },
|
||||
server: { host: '127.0.0.1', port: 34116, strictPort: true },
|
||||
})
|
||||
Reference in New Issue
Block a user